Shape.GetCharacters

Shape.GetCharacters method

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

[Obsolete("Use Shape.GetRichFormattings() instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public ArrayList GetCharacters()

Return Value

All Characters objects

Remarks

NOTE: This method is now obsolete. Instead, please use Shape.GetRichFormattings() method. This method will be removed 12 months later since November 2023. Aspose apologizes for any inconvenience you may have experienced.

Examples


[C#]
ArrayList list = shape.GetCharacters();

See Also