API Documentation > Interface Classes > Class pfcArgValue
Class pfcArgValue

# include <pfcArgument.h>

class
pfcArgValue
: public
xobject
{
xdeclare(pfcArgValue)
...
};
This is a
COMPACT class.

Description
This interface represents an argument value, which may be one of several different types.
See Also:
Manual References:
Method Summary
void
Used if the argument value contains a character string.
void
Used if the argument value contains a boolean.
Returns the union discriminant value.
void
Used if the argument value contains a double.
void
Used if the argument value contains an integer.
void
Used if the argument value contains a Creo Parametric selection.
void
Used if the argument value contains a string.
void
Used if the argument value contains a coordinate transformation.
Method Detail
Getdiscr
()
Returns the union discriminant value.
GetIntValue
()
void
SetIntValue
(xint value)
Used if the argument value contains an integer.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain an integer
Manual References:
GetDoubleValue
()
void
SetDoubleValue
(xreal value)
Used if the argument value contains a double.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a double
Manual References:
GetBoolValue
()
void
SetBoolValue
(xbool value)
Used if the argument value contains a boolean.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a boolean
Manual References:
GetASCIIStringValue
()
void
SetASCIIStringValue
(xrstring value)
Used if the argument value contains a character string.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a character string
Manual References:
GetStringValue
()
void
SetStringValue
(xrstring value)
Used if the argument value contains a string.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a string
Manual References:
GetSelectionValue
()
void
SetSelectionValue
Used if the argument value contains a Creo Parametric selection.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a Creo Parametric selection
Manual References:
GetTransformValue
()
void
SetTransformValue
Used if the argument value contains a coordinate transformation.
Exceptions thrown (but not limited to):
pfcXBadGetArgValue - Argument value does not contain a coordinate transformation
Manual References:
Was this helpful?