Jump to content

Template:VIServerHasMethods: Difference between revisions

From LabVIEW Wiki
Starting Templates
 
mNo edit summary
Line 321: Line 321:
|}
|}


'''Example:''' ''[[{{VIServerGetClassName|6}} class]] - Has Properties''
'''Example:''' ''[[{{VIServerGetClassName|6}} class]] - Has methods''


<code>
<code>
Line 331: Line 331:
'''Result:''' {{VIServerHasMethods|6}}
'''Result:''' {{VIServerHasMethods|6}}


'''Example:''' ''[[{{VIServerGetClassName|4}} class]] - Does not have properties''
'''Example:''' ''[[{{VIServerGetClassName|4}} class]] - Does not have methods''


<code>
<code>

Revision as of 15:09, 8 September 2019


Usage

This template is a lookup table. The input is the Class ID of a class in the VI Server Class Hierarchy. It returns the whether the class has any methods {TRUE, FALSE}.

Syntax is as follows:

{{VIServerHasMethods|{{{1}}}}}

where:

Parameter Description Default
{{{1}}} The Class ID of a class in the VI Server Class Hierarchy. NULL = FALSE

Example: Control class - Has methods

{{VIServerHasMethods|6}}

Result: TRUE

Example: Decoration class - Does not have methods

{{VIServerHasMethods|4}}

Result: FALSE

Example: Passing a Null

Passing a NULL defaults to FALSE.

{{VIServerHasMethods}}

Result: FALSE

See Also