Comment.GetCharacters

Comment.GetCharacters method

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

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

Return Value

All Characters objects

Remarks

NOTE: This method is now obsolete. Instead, please use Comment.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 = comment1.GetCharacters();

See Also