Class FoldingRegionTag
Represents tag for folding regions.
Inheritance
System.Object
FoldingRegionTag
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.SyntaxEditor.Core.Tagging
Assembly: Telerik.Windows.SyntaxEditor.Core.dll
Syntax
public class FoldingRegionTag : 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
|