RichText.TrimEnd

TrimEnd(params char[])

Removes all the trailing occurrences of a set of characters specified in an array.

public RichText TrimEnd(params char[] trimChars)
ParameterTypeDescription
trimCharsChar[]The trim chars.

Return Value

The RichText.

See Also


TrimEnd(char)

Removes all the trailing occurrences of a character.

public RichText TrimEnd(char trimChar)
ParameterTypeDescription
trimCharCharThe trim char.

Return Value

The RichText.

See Also


TrimEnd()

Removes all the trailing white-space characters.

public RichText TrimEnd()

Return Value

The RichText.

See Also