_Codeblock Constructor | |
This constructor is used by the Macro Compiler
Namespace:
XSharp
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax CONSTRUCTOR(
innerBlock AS ICodeblock,
cMacro AS STRING,
lIsBlock AS LOGIC,
lAddsMemvars AS LOGIC
)
public _Codeblock(
ICodeblock innerBlock,
string cMacro,
bool lIsBlock,
bool lAddsMemvars
)
Request Example
View SourceParameters
- innerBlock
- Type: ICodeblock
Compiled codeblock created by the macro compiler. - cMacro
- Type: String
Macro string that was used to create the codeblock. - lIsBlock
- Type: Logic
Did the macro string start with "{|". - lAddsMemvars
- Type: Logic
Does the macro create Memvars .
See Also