Class
FoldingRegionDefinition

Defines the start and end strings of a collapsible (folding) code section.

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor.Taggers

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

cs-api-definition
public class FoldingRegionDefinition

Inheritance: objectFoldingRegionDefinition

Constructors

FoldingRegionDefinition(string, string)

Initializes a new instance of the FoldingRegionDefinition class.

Declaration

cs-api-definition
public FoldingRegionDefinition(string startText, string endText)

Parameters

startText

string

The defining start text.

endText

string

The defining end text.

Properties

EndText

Gets or sets the defining end text of the region definition.

Declaration

cs-api-definition
public string EndText { get; set; }

Property Value

string

StartText

Gets or sets the defining start text of the region definition.

Declaration

cs-api-definition
public string StartText { get; set; }

Property Value

string