Table of Contents

TDrawingRichString.Substring Method

Overloads

TDrawingRichString.Substring(Int32)

Retrieves a substring from this instance. The substring starts at a specified character position and ends at the end of the string.

Syntax

Namespace: FlexCel.Core

public TDrawingRichString Substring(Int32 index)

Parameters

<-> Parameter Type Description
index Int32 Start of the substring (0 based)

See also

TDrawingRichString.Substring(Int32, Int32)

Retrieves a substring from this instance. The substring starts at a specified character position and has a specified length.

Syntax

Namespace: FlexCel.Core

public TDrawingRichString Substring(Int32 index, Int32 count)

Parameters

<-> Parameter Type Description
index Int32 Start of the substring (0 based)
count Int32 Number of characters to copy.

See also