Class AutoReplaceTrigger
Represents a class that stores information about one autoreplace trigger.
Inheritance
System.Object
AutoReplaceTrigger
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
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class AutoReplaceTrigger
Constructors
AutoReplaceTrigger()
Initializes a new instance of the AutoReplaceTrigger class.
Declaration
public AutoReplaceTrigger()
AutoReplaceTrigger(String, String)
Initializes a new instance of the AutoReplaceTrigger class.
Declaration
public AutoReplaceTrigger(string strFrom, string strTo)
Parameters
Type | Name | Description |
---|---|---|
System.String | strFrom | Text that should be deleted. |
System.String | strTo | Text that should be inserted. |
Properties
From
Gets or sets the text that should be deleted.
Declaration
public string From { get; set; }
Property Value
Type |
---|
System.String |
To
Gets or sets the text that should be inserted.
Declaration
public string To { get; set; }
Property Value
Type |
---|
System.String |