Class FoldingRegionDefinition
Defines the start and end strings of a collapsible (folding) code section.
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Controls.SyntaxEditor.Taggers
Assembly: Telerik.WinControls.SyntaxEditor.dll
Syntax
public class FoldingRegionDefinition
Constructors
FoldingRegionDefinition(String, String)
Initializes a new instance of the FoldingRegionDefinition class.
Declaration
public FoldingRegionDefinition(string startText, string endText)
Parameters
System.String
startText
The defining start text. |
System.String
endText
The defining end text. |
Properties
EndText
Gets or sets the defining end text of the region definition.
Declaration
public string EndText { get; set; }
Property Value
System.String
|
StartText
Gets or sets the defining start text of the region definition.
Declaration
public string StartText { get; set; }
Property Value
System.String
|