RichText.TrimStart

TrimStart(params char[])

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

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

Return Value

The RichText.

See Also


TrimStart(char)

Removes all the leading occurrences of a specified character.

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

Return Value

The RichText.

See Also


TrimStart()

Removes all the leading white-space characters.

public RichText TrimStart()

Return Value

The RichText.

See Also