Property information for OPC Toolbox objects
Out = propinfo(Obj)
Out = propinfo(Obj,'PropName')
Out = propinfo(Obj)
returns a structure
array, Out
, with field names given by the property names for
Obj
. Each property name in Out
contains a
structure with the fields shown below.
Field Name | Description |
---|---|
| Data type of the property. Possible values are
' |
| Type of constraint on the property value. Possible values
are |
| List of valid character vector values or a range of valid values |
| Default value for the property |
| Condition under which a property is read-only:
|
Out = propinfo(Obj,'PropName')
returns a
structure array, Out
, for the property specified by
PropName
. If PropName
is a cell array of
character vectors or an array of strings, then the function returns a cell array of
structures for each property.
da = opcda('localhost','Dummy.Server'); allInfo = propinfo(da) serverIDInfo = propinfo(da,'ServerID')