Class FoldingRegionTag
Represents tag for folding regions.
Inheritance
System.Object
FoldingRegionTag
Namespace: Telerik.Windows.SyntaxEditor.Core.Tagging
Assembly: Telerik.Windows.SyntaxEditor.Core.dll
Syntax
public class FoldingRegionTag : Object, ITag
Constructors
FoldingRegionTag(String, Boolean, Object)
Initializes a new instance of the FoldingRegionTag class.
Declaration
public FoldingRegionTag(string title, bool isDefaultFolded, object foldedToolTipContent)
Parameters
System.String
title
|
System.Boolean
isDefaultFolded
|
System.Object
foldedToolTipContent
|
Properties
FoldedToolTipContent
Gets the tooltip content for this region.
Declaration
public object FoldedToolTipContent { get; }
Property Value
System.Object
|
IsDefaultFolded
Gets a value indicating whether this region is folded by default.
Declaration
public bool IsDefaultFolded { get; }
Property Value
System.Boolean
|
Title
Gets the title of the folding region.
Declaration
public string Title { get; }
Property Value
System.String
|