Class Split
Represents a class that contain one split element.
Inheritance
System.Object
Split
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.Implementation.Config
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class Split
Constructors
Split()
Initializes a new instance of the Split class.
Declaration
public Split()
Split(String)
Initializes a new instance of the non-regex Split class.
Declaration
public Split(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Specifies splitter text. |
Split(String, Boolean)
Initializes a new instance of the Split class.
Declaration
public Split(string text, bool isRegex)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Specifies splitter text. |
System.Boolean | isRegex | Specifies whether splitter is regex. |
Properties
IsRegex
Gets or sets a value indicating whether the split text is regular expression.
Declaration
public bool IsRegex { get; set; }
Property Value
Type |
---|
System.Boolean |
Text
Gets or sets split text.
Declaration
public string Text { get; set; }
Property Value
Type |
---|
System.String |