|
|
(17 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| {{underconstruction}} | | The '''VI Server Class Hierarchy''' is the object-oriented organization of all of the classes available in the [[VI Server]]. These classes define all of the elements in the [[G|G language]] and is the backbone for properties, (accessible by [[Property node|property node]]), methods, (accessible by [[Invoke Node|invoke node]]), and events. The hierarchy consists of the following classes: |
| | {{TOCright}} |
|
| |
|
| The '''VI Server Class Hierarchy''' is the object-oriented organization of all of the classes available in the [[VI Server]]. These classes define all of the elements in the [[G|G language]] and is the backbone for properties, (accessible by [[Property node|property node]]), methods, accessible by ([[Invoke Node|invoke node]]), and events. The hierarchy consists of the following classes:
| | == Class Hierarchy Tree View == |
| __TOC__
| |
| {| class="wikitable"
| |
| ! colspan="2"|Legend
| |
| |-
| |
| |B
| |
| |[[VI Server#Basic Development Environment|Basic Development Environment]]
| |
| |-
| |
| |S
| |
| |[[VI Server#VI Scripting|VI Scripting]]
| |
| |-
| |
| |P
| |
| |[[VI Server#Private|Private]]
| |
| |-
| |
| |B
| |
| |[[VI Server#Deprecated|Deprecated]]
| |
| |}
| |
| == Tree View ==
| |
| {{#tree: | | {{#tree: |
| *[[Application class|Application]] (ClassID:1 [[VI Server#Basic Development Environment|B]])
| | *[[Application class|Application]] (ClassID:1 [[VI Server#Basic Development Environment|Basic Development Environment]]) |
| *[[CopyConflict class|CopyConflict]] (ClassID:98 [[VI Server#Private|P]])
| | *[[CopyConflict class|CopyConflict]] (ClassID:98 [[VI Server#Private|Private]]) |
| *[[CopyExpert class|CopyExpert]] (ClassID:99 [[VI Server#Private|P]])
| | *[[CopyExpert class|CopyExpert]] (ClassID:99 [[VI Server#Private|Private]]) |
| *[[CopyItem class|CopyItem]] (ClassID:97 [[VI Server#Private|P]])
| | *[[CopyItem class|CopyItem]] (ClassID:97 [[VI Server#Private|Private]]) |
| *[[CopyOperation class|CopyOperation]] (ClassID:94 [[VI Server#Private|P]])
| | *[[CopyOperation class|CopyOperation]] (ClassID:94 [[VI Server#Private|Private]]) |
| *[[Generic class|Generic]] (ClassID:3 [[VI Server#Basic Development Environment|B]])
| | *[[Generic class|Generic]] (ClassID:3 [[VI Server#Basic Development Environment|Basic Development Environment]]) |
| **[[Bus class|Bus]] (ClassID:131 [[VI Server#Basic Development Environment|B]])
| | **[[Bus class|Bus]] (ClassID:131 [[VI Server#Basic Development Environment|Basic Development Environment]]) |
| **[[ConnectorPane class|ConnectorPane]] (ClassID:56 [[VI Server#VI Scripting|S]])
| | **[[ConnectorPane class|ConnectorPane]] (ClassID:56 [[VI Server#VI Scripting|VI Scripting]]) |
| **[[Cursor class|Cursor]] (ClassID:38 [[VI Server#Basic Development Environment|B]])
| | **[[Cursor class|Cursor]] (ClassID:38 [[VI Server#Basic Development Environment|Basic Development Environment]]) |
| **[[FlatSequenceFrame class|FlatSequenceFrame]] (ClassID:16479 [[VI Server#VI Scripting|S]])
| | **[[FlatSequenceFrame class|FlatSequenceFrame]] (ClassID:16479 [[VI Server#VI Scripting|VI Scripting]]) |
| ***[[TimeSequenceFrame class|TimeSequenceFrame]] (ClassID:16494 [[VI Server#VI Scripting|S]])
| | ***[[TimeSequenceFrame class|TimeSequenceFrame]] (ClassID:16494 [[VI Server#VI |
| **[
| |
| }} | | }} |
| | [[VI Server Class Hierarchy Table|Click here for a tabular view of this data]] |
|
| |
|
| == Table View == | | == Programmatic Access to the VI Server Class Hierarchy == |
| | === Programmatic Access to the Classes === |
| | [[File:AllTypes() property.png|frame|AllTypes[] property]] |
| | Through [[VI Scripting]] the entire VI Server Class Hierarchy can be seen by accessing the [[ClassSpecifierConstant class/All Types() property|All Types[] property]] of the [[ClassSpecifierConstant class]]. This property returns an array of clusters with each element of the array representing one class in the hierarchy. The cluster contains the following four elements about the class: |
| | *Unique ID string - This is the class ID of the class |
| | *Parent ID string - This is the Unique ID string of the Parent this class inherits from |
| | *Class Name (unlocalized) - This is the name of the class in English |
| | *Class Name (localized) - This is the name of the class in the language of the [[Development Environment|LabVIEW Integrated Development Environment (IDE)]] |
|
| |
|
| {| class="wikitable"
| | === Programmatic Access to the Properties === |
| ! VI Server Class
| | [[File:AllProps() property.png|frame|AllProps[] property]] |
| ! ClassID
| | Through [[VI Scripting]] the all of the properties of a given class can be seen by accessing the [[Property class/All Supported Properties property|All Supported Properties property]] of the [[Property class]]. Start by setting the [[Property node|property node]] to the desired class. Then, through scripting functions, get the reference to that property node and read the [[Property class/All Supported Properties property|All Supported Properties property]] of it. It will return an array of clusters with each element of the array representing an acceptable property of the given class or of a class in its inheritance chain. The cluster contains the following for elements about the property: |
| ! B
| | *Unique ID string - This is a unique ID for the property |
| ! S
| | *Data Name - This is the data name of the property |
| ! P
| | *Short Name (localized) - This is the name of the property as it would appear in a property node in the language of the [[Development Environment|LabVIEW IDE]] |
| ! D
| | *Long Name (localized) - This is the name of the property as it would appear in a drop-down menus as the property was being selected and is in the language of the [[Development Environment|LabVIEW IDE]] |
| |- | | |
| | | | === Programmatic Access to the Methods === |
| *[[Application class|Application]]
| | [[File:AllMeths() property.png|frame|AllMeths[] property]] |
| | 1
| | Through [[VI Scripting]] the all of the methods of a given class can be seen by accessing the [[Invoke class/All Supported Methods property|All Supported Methods property]] of the [[Invoke class]]. Start by setting the [[Invoke node|invoke node]] to the desired class. Then, through scripting functions, get the reference to that invoke node and read the [[Invoke class/All Supported Methods property|All Supported Methods property]] of it. It will return an array of clusters with each element of the array representing an acceptable method of the given class or of a class in its inheritance chain. The cluster contains the following for elements about the method: |
| | [[VI Server#Basic Development Environment|X]]
| | *Unique ID string - This is a unique ID for the method |
| | | | *Data Name - This is the data name of the method |
| | | | *Short Name (localized) - This is the name of the method as it would appear in a invoke node in the language of the [[Development Environment|LabVIEW IDE]] |
| |
| | *Long Name (localized) - This is the name of the method as it would appear in a drop-down menus as the method was being selected and is in the language of the [[Development Environment|LabVIEW IDE]] |
| |-
| | |
| |
| | === The VI Server Toolkit === |
| *[[CopyConflict class|CopyConflict]] | | Use the [https://gpackage.io/packages/@qsi/viservertoolkit VI Server Toolkit] from QSI to easily query the VI Server for Classes, Properties, Methods, and Events information. (Requires [[VI Scripting]]. The [https://gpackage.io/packages/@qsi/viservertoolkit VI Server Toolkit] is not for use in built applications.) |
| | 98
| | |
| |
| | === The Class Browser === |
| |
| | |
| | [[VI Server#Private|X]]
| | The [[Class Browser]] is a built-in way to see the VI Server Classes, Properties and Methods. (See the [[Class Browser]] page for more information.) |
| |
| |
| |-
| |
| |
| |
| *[[CopyExpert class|CopyExpert]]
| |
| | 99
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[CopyItem class|CopyItem]]
| |
| | 97
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[CopyOperation class|CopyOperation]]
| |
| | 94
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[Generic class|Generic]] | |
| | 3
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Bus class|Bus]] | |
| | 131
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[ConnectorPane class|ConnectorPane]]
| |
| | 56
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Cursor class|Cursor]]
| |
| | 38
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[FlatSequenceFrame class|FlatSequenceFrame]]
| |
| | 16479
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[TimeSequenceFrame class|TimeSequenceFrame]]
| |
| | 16494
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[GObject class|GObject]]
| |
| | 36
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[AbstractDiagram class|AbstractDiagram]]
| |
| | 16503
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Diagram class|Diagram]]
| |
| | 16384
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[CompanionDiagram class|CompanionDiagram]]
| |
| | 16473
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ScDiagram class|ScDiagram]]
| |
| | 16511
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SDF Companion Diagram class|SDF Companion Diagram]]
| |
| | 16489
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SDFDiagram class|SDFDiagram]]
| |
| | 16488
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SimDiagram class|SimDiagram]]
| |
| | 16472
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TopLevelDiagram class|TopLevelDiagram]]
| |
| | 16423
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MathDiagram class|MathDiagram]]
| |
| | 16502
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Constant class|Constant]]
| |
| | 16386
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[AbsTimeConstant class|AbsTimeConstant]]
| |
| | 16461
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ArrayConstant class|ArrayConstant]]
| |
| | 16388
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[BooleanConstant class|BooleanConstant]]
| |
| | 16422
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ClusterConstant class|ClusterConstant]]
| |
| | 16393
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ColorBoxConstant class|ColorBoxConstant]]
| |
| | 16450
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[FixedConstant class|FixedConstant]]
| |
| | 16394
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[IONameConstant class|IONameConstant]]
| |
| | 16445
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DAQChannelNameConstant class|DAQChannelNameConstant]]
| |
| | 16447
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DAQmxNameConstant class|DAQmxNameConstant]]
| |
| | 16457
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DSCTagConstant class|DSCTagConstant]]
| |
| | 16446
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassTagFlatRefConstant class|GenClassTagFlatRefConstant]]
| |
| | 16470
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassTagRefConstant class|GenClassTagRefConstant]]
| |
| | 16460
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[IVILogicalNameConstant class|IVILogicalNameConstant]]
| |
| | 16449
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[VISAResourceNameConstant class|VISAResourceNameConstant]]
| |
| | 16448
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[LabVIEWClassConstant class|LabVIEWClassConstant]]
| |
| | 16501
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[NumericConstant class|NumericConstant]]
| |
| | 16389
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DigitalNumericConstant class|DigitalNumericConstant]]
| |
| | 16390
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[NamedNumericConstant class|NamedNumericConstant]]
| |
| | 16391
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[EnumConstant class|EnumConstant]]
| |
| | 16425
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[RingConstant class|RingConstant]]
| |
| | 16424
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[PathConstant class|PathConstant]]
| |
| | 16387
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[RefNumConstant class|RefNumConstant]]
| |
| | 16482
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ClassSpecifierConstant class|ClassSpecifierConstant]]
| |
| | 16452
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassRefConst class|GenClassRefConst]]
| |
| | 16529
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TypedRefNumConstant class|TypedRefNumConstant]]
| |
| | 16538
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[DataValRefNumConstant class|DataValRefNumConstant]]
| |
| | 16539
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[StringConstant class|StringConstant]]
| |
| | 16392
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ComboBoxConstant class|ComboBoxConstant]]
| |
| | 16466
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Control class|Control]]
| |
| | 6
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[AbsTime class|AbsTime]]
| |
| | 60
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ActiveXContainer class|ActiveXContainer]]
| |
| | 16
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Array class|Array]]
| |
| | 14
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Boolean class|Boolean]]
| |
| | 8
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Cluster class|Cluster]]
| |
| | 30
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[RadioButtonsControl class|RadioButtonsControl]]
| |
| | 72
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ColorBox class|ColorBox]]
| |
| | 7
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[DigitalTable class|DigitalTable]]
| |
| | 61
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[GraphChart class|GraphChart]]
| |
| | 22
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[IntensityChart class|IntensityChart]]
| |
| | 25
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[IntensityGraph class|IntensityGraph]]
| |
| | 26
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[MixedSignalGraph class|MixedSignalGraph]]
| |
| | 92
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[WaveformChart class|WaveformChart]]
| |
| | 23
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[WaveformGraph class|WaveformGraph]]
| |
| | 24
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[DigitalGraph class|DigitalGraph]]
| |
| | 121
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[XYGraph class|XYGraph]]
| |
| | 83
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[IOName class|IOName]]
| |
| | 28
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DAQChannelName class|DAQChannelName]]
| |
| | 49
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DAQmxName class|DAQmxName]]
| |
| | 57
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[DSCTag class|DSCTag]]
| |
| | 48
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassTagFlatRef class|GenClassTagFlatRef]]
| |
| | 122
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassTagRef class|GenClassTagRef]]
| |
| | 67
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[IVILogicalName class|IVILogicalName]]
| |
| | 51
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[VISAResourceName class|VISAResourceName]]
| |
| | 50
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[LabVIEWClassControl class|LabVIEWClassControl]]
| |
| | 102
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ListBox class|ListBox]]
| |
| | 12
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[LVVariant class|LVVariant]]
| |
| | 10
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MixedCheckbox class|MixedCheckbox]]
| |
| | 127
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MulticolumnListbox class|MulticolumnListbox]]
| |
| | 46
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MultiSegmentPipe class|MultiSegmentPipe]]
| |
| | 130
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Numeric class|Numeric]]
| |
| | 17
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ColorRamp class|ColorRamp]]
| |
| | 20
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[Digital class|Digital]]
| |
| | 18
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[NamedNumeric class|NamedNumeric]]
| |
| | 19
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Enum class|Enum]]
| |
| | 35
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Ring class|Ring]]
| |
| | 34
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[NumericWithScale class|NumericWithScale]]
| |
| | 33
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Knob class|Knob]]
| |
| | 32
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Slide class|Slide]]
| |
| | 21
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[PageSelector class|PageSelector]]
| |
| | 53
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TabControl class|TabControl]]
| |
| | 55
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Path class|Path]]
| |
| | 11
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Picture class|Picture]]
| |
| | 15
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Pixmap class|Pixmap]]
| |
| | 78
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[PlugInControl class|PlugInControl]]
| |
| | 70
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[PlugInDDODummyContainer class|PlugInDDODummyContainer]]
| |
| | 71
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[RefNum class|RefNum]]
| |
| | 9
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenClassRef class|GenClassRef]]
| |
| | 68
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[LVObjectRefNum class|LVObjectRefNum]]
| |
| | 59
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[VIRefNum class|VIRefNum]]
| |
| | 58
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TypedRefNum class|TypedRefNum]]
| |
| | 44
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[DataValRefNum class|DataValRefNum]]
| |
| | 135
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneGraphDisplay class|SceneGraphDisplay]]
| |
| | 100
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Scrollbar class|Scrollbar]]
| |
| | 90
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[String class|String]]
| |
| | 27
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ComboBox class|ComboBox]]
| |
| | 29
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[StubDDO class|StubDDO]]
| |
| | 132
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SubPanel class|SubPanel]]
| |
| | 65
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Table class|Table]]
| |
| | 13
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[TreeControl class|TreeControl]]
| |
| | 66
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[WaveformData class|WaveformData]]
| |
| | 47
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Decoration class|Decoration]]
| |
| | 4
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Text class|Text]]
| |
| | 5
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[NumericText class|NumericText]]
| |
| | 39
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[FlatSequence class|FlatSequence]]
| |
| | 16459
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[TimeFlatSequence class|TimeFlatSequence]]
| |
| | 16495
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[FlatSequenceInnerTunnel class|FlatSequenceInnerTunnel]]
| |
| | 16480
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[FlatSequenceOuterTunnel class|FlatSequenceOuterTunnel]]
| |
| | 16481
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[FormulaParameter class|FormulaParameter]]
| |
| | 16396
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MathScriptNodeParameter class|MathScriptNodeParameter]]
| |
| | 16500
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ScriptNodeParameter class|ScriptNodeParameter]]
| |
| | 16464
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Node class|Node]]
| |
| | 16421
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[CallByRef class|CallByRef]]
| |
| | 16402
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ControlReferenceConstant class|ControlReferenceConstant]]
| |
| | 16451
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[FeedbackNode class|FeedbackNode]]
| |
| | 16522
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Formula class|Formula]]
| |
| | 16409
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InlineCNode class|InlineCNode]]
| |
| | 16504
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[MathScriptNode class|MathScriptNode]]
| |
| | 16499
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ScriptNode class|ScriptNode]]
| |
| | 16436
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Function class|Function]]
| |
| | 16400
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ArrayToCluster class|ArrayToCluster]]
| |
| | 16437
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[Comparison class|Comparison]]
| |
| | 16429
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[InRangeAndCoerce class|InRangeAndCoerce]]
| |
| | 16535
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[FileDialog class|FileDialog]]
| |
| | 16492
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[FlattenUnflattenString class|FlattenUnflattenString]]
| |
| | 16432
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[FlattenString class|FlattenString]]
| |
| | 16483
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GPIBReadWrite class|GPIBReadWrite]]
| |
| | 16433
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ReadWriteFile class|ReadWriteFile]]
| |
| | 16430
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TypeCast class|TypeCast]]
| |
| | 16431
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Global class|Global]]
| |
| | 16397
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[GrowableFunction class|GrowableFunction]]
| |
| | 16410
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[BuildClusterArray class|BuildClusterArray]]
| |
| | 16411
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[Bundler class|Bundler]]
| |
| | 16476
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[BuildArray class|BuildArray]]
| |
| | 16414
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[NamedBundler class|NamedBundler]]
| |
| | 16415
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[CallLibrary class|CallLibrary]]
| |
| | 16417
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[CIN class|CIN]]
| |
| | 16416
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[CompoundArithmetic class|CompoundArithmetic]]
| |
| | 16412
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[FormatScanString class|FormatScanString]]
| |
| | 16438
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[IndexArray class|IndexArray]]
| |
| | 16413
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ObjectFunction class|ObjectFunction]]
| |
| | 16418
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Constructor class|Constructor]]
| |
| | 16505
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Invoke class|Invoke]]
| |
| | 16420
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Property class|Property]]
| |
| | 16419
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[RegisterForEvents class|RegisterForEvents]]
| |
| | 16542
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[Unbundler class|Unbundler]]
| |
| | 16477
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[NamedUnbundler class|NamedUnbundler]]
| |
| | 16478
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[InPlaceBorderNode class|InPlaceBorderNode]]
| |
| | 16517
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceArrayNode class|InPlaceArrayNode]]
| |
| | 16518
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceArraySplitNode class|InPlaceArraySplitNode]]
| |
| | 16530
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceClusterNode class|InPlaceClusterNode]]
| |
| | 16519
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceDataValRefNode class|InPlaceDataValRefNode]]
| |
| | 16524
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceElementNode class|InPlaceElementNode]]
| |
| | 16521
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceVariantAttributeNode class|InPlaceVariantAttributeNode]]
| |
| | 16544
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceVariantNode class|InPlaceVariantNode]]
| |
| | 16520
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Local class|Local]]
| |
| | 16398
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[MathScriptCallByRef class|MathScriptCallByRef]]
| |
| | 16523
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SharedVariableDynamicOpen class|SharedVariableDynamicOpen]]
| |
| | 16531
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SharedVariableDynamicRead class|SharedVariableDynamicRead]]
| |
| | 16532
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SharedVariableDynamicWrite class|SharedVariableDynamicWrite]]
| |
| | 16533
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SharedVariableNode class|SharedVariableNode]]
| |
| | 16512
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[StaticVIReference class|StaticVIReference]]
| |
| | 16465
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[Structure class|Structure]]
| |
| | 16404
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ClosureStructureNode class|ClosureStructureNode]]
| |
| | 16545
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[InPlaceElementStructure class|InPlaceElementStructure]]
| |
| | 16516
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[Loop class|Loop]]
| |
| | 16405
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[ForLoop class|ForLoop]]
| |
| | 16434
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[WhileLoop class|WhileLoop]]
| |
| | 16435
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::::*[[TimedLoop class|TimedLoop]]
| |
| | 16467
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[MultiFrameStructure class|MultiFrameStructure]]
| |
| | 16406
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[CaseStructure class|CaseStructure]]
| |
| | 16408
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[DisableStructure class|DisableStructure]]
| |
| | 16487
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[EventStructure class|EventStructure]]
| |
| | 16458
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[RaceStructureNode class|RaceStructureNode]]
| |
| | 16546
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[Sequence class|Sequence]]
| |
| | 16407
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::::*[[ExternalNode class|ExternalNode]]
| |
| | 16462
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SimulationNode class|SimulationNode]]
| |
| | 16474
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[StatechartStructureNode class|StatechartStructureNode]]
| |
| | 16537
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[ForkNode class|ForkNode]]
| |
| | 16509
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[JoinNode class|JoinNode]]
| |
| | 16510
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[JunctionNode class|JunctionNode]]
| |
| | 16507
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[RegionNode class|RegionNode]]
| |
| | 16506
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[StateNode class|StateNode]]
| |
| | 16508
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SynchronousDataFlowNode class|SynchronousDataFlowNode]]
| |
| | 16490
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TargetStructureNode class|TargetStructureNode]]
| |
| | 16543
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[TimedSequence class|TimedSequence]]
| |
| | 16496
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SubVI class|SubVI]]
| |
| | 16401
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[AbstractDynamicDispatch class|AbstractDynamicDispatch]]
| |
| | 16526
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[CallParentNode class|CallParentNode]]
| |
| | 16528
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::::*[[DynamicDispatchSubVI class|DynamicDispatchSubVI]]
| |
| | 16527
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ConfNode class|ConfNode]]
| |
| | 16453
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[GenericSubVI class|GenericSubVI]]
| |
| | 16534
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[PolymorphicSubVI class|PolymorphicSubVI]]
| |
| | 16443
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[TextBaseNode class|TextBaseNode]]
| |
| | 16540
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[ExpressionNode class|ExpressionNode]]
| |
| | 16541
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[UnitCast class|UnitCast]]
| |
| | 16403
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[XNode class|XNode]]
| |
| | 16485
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[XDataNode class|XDataNode]]
| |
| | 16497
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Pane class|Pane]]
| |
| | 75
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Panel class|Panel]]
| |
| | 31
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[PolymorphicVISelector class|PolymorphicVISelector]]
| |
| | 16484
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[PropertyItem class|PropertyItem]]
| |
| | 16444
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Scale class|Scale]]
| |
| | 40
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ColorGraphScale class|ColorGraphScale]]
| |
| | 43
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ColorScale class|ColorScale]]
| |
| | 41
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[RotaryColorScale class|RotaryColorScale]]
| |
| | 69
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[GraphScale class|GraphScale]]
| |
| | 42
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SlideScale class|SlideScale]]
| |
| | 52
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SequenceLocal class|SequenceLocal]]
| |
| | 16428
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SimulationDCO class|SimulationDCO]]
| |
| | 16475
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Splitter class|Splitter]]
| |
| | 76
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SynchronousDataFlowDCO class|SynchronousDataFlowDCO]]
| |
| | 16491
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Terminal class|Terminal]]
| |
| | 16385
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ControlTerminal class|ControlTerminal]]
| |
| | 16395
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[InnerTerminal class|InnerTerminal]]
| |
| | 16441
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[OuterTerminal class|OuterTerminal]]
| |
| | 16456
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ParameterTerminal class|ParameterTerminal]]
| |
| | 16514
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[OverridableParameterTerminal class|OverridableParameterTerminal]]
| |
| | 16515
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[TimedStructDCO class|TimedStructDCO]]
| |
| | 16493
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Tunnel class|Tunnel]]
| |
| | 16426
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[ConditionalTunnel class|ConditionalTunnel]]
| |
| | 16525
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::::*[[SelectorTunnel class|SelectorTunnel]]
| |
| | 16486
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[LeftShiftRegister class|LeftShiftRegister]]
| |
| | 16442
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[LoopTunnel class|LoopTunnel]]
| |
| | 16427
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[RegionTunnel class|RegionTunnel]]
| |
| | 16536
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[RightShiftRegister class|RightShiftRegister]]
| |
| | 16399
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[Wire class|Wire]]
| |
| | 16439
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[MasterWizard class|MasterWizard]]
| |
| | 16454
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Page class|Page]]
| |
| | 54
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Plot class|Plot]]
| |
| | 37
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Probe class|Probe]]
| |
| | 16440
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SubWizard class|SubWizard]]
| |
| | 16463
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[CodeWizard class|CodeWizard]]
| |
| | 16498
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[ExternalEditorWizard class|ExternalEditorWizard]]
| |
| | 16547
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[StateDiagramWizard class|StateDiagramWizard]]
| |
| | 16455
| |
| |
| |
| | [[VI Server#VI Scripting|X]]
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| *[[LVTarget class|LVTarget]]
| |
| | 91
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[Project class|Project]]
| |
| | 73
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| *[[ProjectFilesViewItem class|ProjectFilesViewItem]]
| |
| | 133
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[ProjectItem class|ProjectItem]]
| |
| | 74
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[BuildSpecification class|BuildSpecification]]
| |
| | 77
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[Library class|Library]]
| |
| | 80
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[LVClassLibrary class|LVClassLibrary]]
| |
| | 85
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[StatechartLibrary class|StatechartLibrary]]
| |
| | 126
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[XInterfaceLibrary class|XInterfaceLibrary]]
| |
| | 103
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[XControlLibrary class|XControlLibrary]]
| |
| | 88
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[XNodeLibrary class|XNodeLibrary]]
| |
| | 89
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[LibraryData class|LibraryData]]
| |
| | 125
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[LVClassPropDefFolder class|LVClassPropDefFolder]]
| |
| | 134
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[PropertyFolder class|PropertyFolder]]
| |
| | 120
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[XPropertyFolder class|XPropertyFolder]]
| |
| | 119
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[TargetItem class|TargetItem]]
| |
| | 95
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| *[[ProjectItemType class|ProjectItemType]]
| |
| | 96
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[Provider class|Provider]]
| |
| | 93
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[Scene class|Scene]]
| |
| | 123
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SceneDrawable class|SceneDrawable]]
| |
| | 128
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SceneGeometry class|SceneGeometry]]
| |
| | 112
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneBox class|SceneBox]]
| |
| | 113
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneCone class|SceneCone]]
| |
| | 114
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneCylinder class|SceneCylinder]]
| |
| | 115
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneHeightField class|SceneHeightField]]
| |
| | 116
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneMesh class|SceneMesh]]
| |
| | 118
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :::*[[SceneSphere class|SceneSphere]]
| |
| | 117
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SceneText class|SceneText]]
| |
| | 129
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SceneNode class|SceneNode]]
| |
| | 104
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SceneClipPlane class|SceneClipPlane]]
| |
| | 110
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SceneLight class|SceneLight]]
| |
| | 106
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| ::*[[SceneObject class|SceneObject]]
| |
| | 105
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SceneTexture class|SceneTexture]]
| |
| | 111
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SceneWindow class|SceneWindow]]
| |
| | 84
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| *[[TagSet class|TagSet]]
| |
| | 82
| |
| |
| |
| |
| |
| | [[VI Server#Private|X]]
| |
| |
| |
| |-
| |
| |
| |
| *[[Variable class|Variable]]
| |
| | 81
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| *[[VI class|VI]]
| |
| | 2
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[FacadeVI class|FacadeVI]]
| |
| | 79
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[MethodVI class|MethodVI]]
| |
| | 87
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[PolymorphicVI class|PolymorphicVI]]
| |
| | 101
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |-
| |
| |
| |
| :*[[SubsystemVI class|SubsystemVI]]
| |
| | 62
| |
| | [[VI Server#Basic Development Environment|X]]
| |
| |
| |
| |
| |
| |
| |
| |}
| |
|
| |
|
| == History == | | == History == |
Line 2,637: |
Line 347: |
| |[[File:LV2016.png|frameless|border|64x64px|LabVIEW 2016|link=LabVIEW 2016]] | | |[[File:LV2016.png|frameless|border|64x64px|LabVIEW 2016|link=LabVIEW 2016]] |
| |The [[InPlaceVariantAttributeNode class]], [[ClosureStructureNode class]], [[RaceStructureNode class]], and [[TargetStructureNode class]] was added. | | |The [[InPlaceVariantAttributeNode class]], [[ClosureStructureNode class]], [[RaceStructureNode class]], and [[TargetStructureNode class]] was added. |
| | |- |
| | |[[File:LV8-2013.png|frameless|border|64x64px|LabVIEW 2010|link=LabVIEW 2010]] |
| | |[[VI Scripting]] officially released and supported in [[LabVIEW 2010]]. |
| | |- |
| | |[[File:LV8-2013.png|frameless|border|64x64px|LabVIEW 2009|link=LabVIEW 2009]] |
| | |Early entry for [[VI Scripting]] downloadable from the [http://sine.ni.com/nips/cds/view/p/lang/en/nid/209110 NI Tools Network] for [[LabVIEW 8.6]] and [[LabVIEW 2009]]. |
| |} | | |} |
|
| |
|
Line 2,642: |
Line 358: |
|
| |
|
| == References == | | == References == |
| | |
| | [[Category:VI Server]] |
| | [[Category:Classes]] |
| | [[Category:Properties]] |
| | [[Category:Methods]] |