Interface IMacro
Provides the functionality for single lexical macro that are used in MacrosManager.
Namespace: Syncfusion.Windows.Forms.Edit.Implementation.Config
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public interface IMacro
Properties
Enabled
Gets or sets a value indicating whether the lexical macro is enabled or not.
Declaration
bool Enabled { get; set; }
Property Value
Type |
---|
System.Boolean |
Name
Gets the name of lexical macro.
Declaration
string Name { get; }
Property Value
Type |
---|
System.String |
NameInConfig
Gets name of the lexical macro surrounded with braces.
Declaration
string NameInConfig { get; }
Property Value
Type |
---|
System.String |
Regex
Gets or sets the corresponding regular expression of lexical macro.
Declaration
string Regex { get; set; }
Property Value
Type |
---|
System.String |