Interface IBlock
IBlock interface has the Block properties of Lexems
Namespace: Syncfusion.Windows.Edit
Assembly: Syncfusion.Edit.Wpf.dll
Syntax
public interface IBlock
Remarks
IBlock contain the properties of a lexem like StartText, EndText, Ismultiline etc.
Properties
ContainsEndText
Gets or sets a value indicating whether [contains end text].
Declaration
bool ContainsEndText { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EndText
Gets or sets the end text.
Declaration
string EndText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The end text. |
IsMultiline
Gets or sets a value indicating whether this instance is multiline.
Declaration
bool IsMultiline { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
LexemType
Gets or sets the type of the lexem.
Declaration
EditTokenType LexemType { get; set; }
Property Value
Type | Description |
---|---|
EditTokenType | The type of the lexem. |
StartText
Gets or sets the start text.
Declaration
string StartText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The start text. |