Class CodeSnippetsManager.SnippetMember
Represent a class that contain information about one snippet member.
Inherited Members
      System.Object.Equals(System.Object)
    
      System.Object.Equals(System.Object, System.Object)
    
      System.Object.GetHashCode()
    
      System.Object.GetType()
    
      System.Object.MemberwiseClone()
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
      System.Object.ToString()
    
Namespace: Syncfusion.Windows.Forms.Edit.Utils.CodeSnippets
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class SnippetMemberConstructors
SnippetMember(Boolean, String)
Initializes a new instance of the CodeSnippetsManager.SnippetMember class.
Declaration
public SnippetMember(bool bIsTemplateMember, string strText)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Boolean | bIsTemplateMember | Bool indicating whether this is a member of template. | 
| System.String | strText | Text of the snippet member. | 
SnippetMember(Boolean, String, String, String)
Initializes a new instance of the CodeSnippetsManager.SnippetMember class.
Declaration
public SnippetMember(bool bIsTemplateMember, string strText, string strName, string strTooltip)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Boolean | bIsTemplateMember | Bool indicating whether this is a member of template. | 
| System.String | strText | Text of the snippet member. | 
| System.String | strName | Name of the template member. | 
| System.String | strTooltip | tooltip. | 
Properties
EndPoint
Gets or sets the end parse point of snippet member in parser.
Declaration
public IParsePoint EndPoint { get; set; }Property Value
| Type | 
|---|
| IParsePoint | 
IsTemplateMember
Gets or sets a value indicating whether the instance is a member of template or not.
Declaration
public bool IsTemplateMember { get; set; }Property Value
| Type | 
|---|
| System.Boolean | 
Name
Gets or sets the name of template member.
Declaration
public string Name { get; set; }Property Value
| Type | 
|---|
| System.String | 
StartPoint
Gets or sets the start parse point of snippet member in parser.
Declaration
public IParsePoint StartPoint { get; set; }Property Value
| Type | 
|---|
| IParsePoint | 
Text
Gets or sets the text of snippet member.
Declaration
public string Text { get; set; }Property Value
| Type | 
|---|
| System.String | 
ToolTip
Gets or sets the name of template member.
Declaration
public string ToolTip { get; set; }Property Value
| Type | 
|---|
| System.String |