ZennoLab Assemblies Documentation
VariableGroupTypeV4 Enumeration
Example Example 
Specifies type of the local variable.
Syntax
public enum VariableGroupTypeV4 : System.Enum 
Members
MemberDescription
AutoGeneratedThe automatically generated a local variable.
UserDefinedThe user-defined local variable.
Example
The following code example uses the VariableGroupTypeV4 enumeration for detected type of the local variable.
// get group of local variable "MyVariable"
VariableGroupTypeV4 @group = project.Variables["MyVariable"].Group;
 
// return result
if (@group == VariableGroupTypeV4.AutoGenerated) return "The local variable MyVariable is auto generated";
return "The local variable MyVariable is user-defined";
// get group of local variable "MyVariable"
$group = $project->Variables["MyVariable"]->Group;
 
// return result
if ($group == VariableGroupTypeV4::AutoGenerated) return "The local variable MyVariable is auto generated";
return "The local variable MyVariable is user-defined";
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         ZennoLab.InterfacesLibrary.ProjectModel.Enums.VariableGroupTypeV4

Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

ZennoLab.InterfacesLibrary.ProjectModel.Enums Namespace
ILocalVariable Interface
ILocalVariables Interface
ILocalVariable.Group Property

Send Feedback