The character type of the text range.
This range has to be of size equal to 1 character.
Sample code:
var text = new PointText(new Point(50, 100));
text.content = 'Text.';
var firstCharacter = text.range.characters.first;
print(firstCharacter.characterType) // 'normal'
var lastCharacter = text.range.characters.last;
print(lastCharacter.characterType); // 'punctuation'
Read-only.
Returns:
-
String ('undefined', 'space', 'punctuation', 'paragraph-end', 'normal')