Shape.Characters

Shape.Characters method

Returns a Characters object that represents a range of characters within the text.

public FontSetting Characters(int startIndex, int length)
ParameterTypeDescription
startIndexInt32The index of the start of the character.
lengthInt32The number of characters.

Return Value

Characters object.

Remarks

This method only works on shape with title.

Examples


[C#]
Aspose.Cells.FontSetting fontSetting = shape.Characters(0, 4);

See Also