Click or drag to resize
MacroElement Class
Macro expression element. Lexical analysis of the K# expression.
Inheritance Hierarchy
SystemObject
  CMS.MacroEngineMacroElement

Namespace: CMS.MacroEngine
Assembly: CMS.MacroEngine (in CMS.MacroEngine.dll) Version: 10.0.0
Syntax
C#
public class MacroElement

The MacroElement type exposes the following members.

Constructors
  NameDescription
Public methodMacroElement
Constructor.
Top
Properties
  NameDescription
Public propertyExpression
Element expression (as was parsed).
Public propertyStartIndex
Index of the expression start in the source expression.
Public propertyType
Element type.
Public propertyValue
Element value (of the element type).
Top
Methods
  NameDescription
Public methodStatic memberEscapeSpecialChars
Escapes special characters in the string to create a string literal.
Public methodStatic memberIsBoolConst
Returns true if the given string is a boolean constant "true" or "false".
Public methodStatic memberIsOperatorChar
Returns true if the character is operator character.
Public methodStatic memberIsValidOperator
Returns true if the operator is valid.
Public methodStatic memberIsWordOperator
Returns true if the given string is a word operator.
Public methodStatic memberParseExpression(String)
Parses the expression.
Public methodStatic memberParseExpression(String, Boolean)
Parses the expression.
Public methodToString
Returns the expression of the element.
(Overrides ObjectToString.)
Public methodStatic memberUnescapeSpecialChars
Unescapes special characters in the string constant.
Top
See Also