alphaTab.alphaTex.AlphaTexComment
A comment attached to a node.
interface AlphaTexCommentProperties​
end​
The end (inclusive) of this node when parsed from an input source file.
- JavaScript
- C#
- Kotlin
end?: AlphaTexAstNodeLocation;AlphaTexAstNodeLocation End { get; set; }var end: AlphaTexAstNodeLocationmultiLine​
Whether the comment is a multiline comment or a single line comment
- JavaScript
- C#
- Kotlin
multiLine: boolean;bool MultiLine { get; set; }var multiLine: Booleanstart​
The start of this node when parsed from an input source file.
- JavaScript
- C#
- Kotlin
start?: AlphaTexAstNodeLocation;AlphaTexAstNodeLocation Start { get; set; }var start: AlphaTexAstNodeLocationtext​
The comment text excluding the comment start/end markers.
- JavaScript
- C#
- Kotlin
text: string;string Text { get; set; }var text: String