ZennoLab Assemblies Documentation
VariableGroupTypeV4 Enumeration
Example  See Also  Send Feedback
ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel.Enums Namespace : VariableGroupTypeV4 Enumeration

Glossary Item Box

Specifies type of the local variable.

Syntax

C# 
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.
C#Copy Code
// 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";
PHPCopy Code
// 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: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

© 2013 All Rights Reserved.