Struct TextReplacementRecord
Defines a structure that contains information about the single replacement.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: Syncfusion.Windows.Forms.Edit.Utils
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public struct TextReplacementRecord
Constructors
TextReplacementRecord(IParsePoint, IParsePoint, String)
Initializes TextReplacementRecord structure with start and end points and new text.
Declaration
public TextReplacementRecord(IParsePoint pointStart, IParsePoint pointEnd, string text)
Parameters
Type | Name | Description |
---|---|---|
IParsePoint | pointStart | Start point of the text to be replaced. |
IParsePoint | pointEnd | End point of the text to be replaced. |
System.String | text | New text to be placed instead of the existing one. |
Fields
NewText
Holds the new text to be placed instead of the existing one.
Declaration
public string NewText
Field Value
Type |
---|
System.String |
PointEnd
Holds the end point of the text to be replaced.
Declaration
public IParsePoint PointEnd
Field Value
Type |
---|
IParsePoint |
PointStart
Holds the start point of the text to be replaced.
Declaration
public IParsePoint PointStart
Field Value
Type |
---|
IParsePoint |