alphaTab.importer.alphaTex.AlphaTexPropertiesNode
A node describing a list of properties grouped by braces. Used in contexts like note effects, beat effects
interface AlphaTexPropertiesNode extends AlphaTexAstNodeProperties​
closeBrace​
The close brace grouping the properties (if needed).
- JavaScript
- C#
- Kotlin
closeBrace?: AlphaTexBraceCloseTokenNode;AlphaTexBraceCloseTokenNode CloseBrace { get; set; }var closeBrace: AlphaTexBraceCloseTokenNodeend​
The end (inclusive) of this node when parsed from an input source file. (Inherited from IAlphaTexAstNode )
- JavaScript
- C#
- Kotlin
end?: AlphaTexAstNodeLocation;AlphaTexAstNodeLocation End { get; set; }var end: AlphaTexAstNodeLocationleadingComments​
The comments preceeding this node. (Inherited from IAlphaTexAstNode )
- JavaScript
- C#
- Kotlin
leadingComments?: AlphaTexComment[];IList<AlphaTexComment> LeadingComments { get; set; }var leadingComments: alphaTab.collections.List<AlphaTexComment>nodeType​
(no description)
- JavaScript
- C#
- Kotlin
nodeType: AlphaTexNodeType.Props;AlphaTexNodeType.Props NodeType { get; set; }var nodeType: AlphaTexNodeType.PropsopenBrace​
The open brace grouping the properties (if needed).
- JavaScript
- C#
- Kotlin
openBrace?: AlphaTexBraceOpenTokenNode;AlphaTexBraceOpenTokenNode OpenBrace { get; set; }var openBrace: AlphaTexBraceOpenTokenNodeproperties​
The individual properties
- JavaScript
- C#
- Kotlin
properties: AlphaTexPropertyNode[];IList<AlphaTexPropertyNode> Properties { get; set; }var properties: alphaTab.collections.List<AlphaTexPropertyNode>start​
The start of this node when parsed from an input source file. (Inherited from IAlphaTexAstNode )
- JavaScript
- C#
- Kotlin
start?: AlphaTexAstNodeLocation;AlphaTexAstNodeLocation Start { get; set; }var start: AlphaTexAstNodeLocationtrailingComments​
The comments after this node (if starting on the same line). (Inherited from IAlphaTexAstNode )
- JavaScript
- C#
- Kotlin
trailingComments?: AlphaTexComment[];IList<AlphaTexComment> TrailingComments { get; set; }var trailingComments: alphaTab.collections.List<AlphaTexComment>