Click or drag to resize
IMacroMethod Interface
Represents method executable in MacroEngine.

Namespace: CMS.Core
Assembly: CMS.Core (in CMS.Core.dll) Version: 10.0.0
Syntax
C#
public interface IMacroMethod

The IMacroMethod type exposes the following members.

Properties
  NameDescription
Public propertyComment
Gets or sets a comment for the method.
Public propertyIsHidden
If true, the method won't be visible in IntelliSense (but will be normally executed when called).
Public propertyMethod
Gets or sets reference to a method.
Public propertyMinimumParameters
Gets or sets the minimal number of parameters needed by the method.
Public propertyName
Returns name of the method.
Public propertyParameters
Gets or sets the parameters for the method.
Public propertySnippet
Gets or sets a code snippet which is used in AutoCompletion when TAB is pressed (for determining the cursor position use pipe).
Public propertySpecialParameters
Gets or sets the list of special parameters needed to be supplied by resolver.
Public propertyType
Gets or sets a return type of the method.
Top
Methods
  NameDescription
Public methodAddParameter
Adds parameter to the method definition.
Public methodExecuteMethod
Executes given method with parameters.
Top
See Also