Extends PathStyle
The CharacterStyle object represents the character style of a text item ( textItem.characterStyle) or a text range ( textRange.characterStyle).
Sample code:
var text = new PointText(new Point(50, 100)); text.content = 'Hello world.'; text.characterStyle.font = app.fonts['helvetica']; text.characterStyle.fontSize = 10; text.characterStyle.tracking = 100;