Struct OfxPropertySuiteV1
-
struct OfxPropertySuiteV1
The OFX suite used to access properties on OFX objects.
Public Members
-
OfxStatus (*propSetPointer)(OfxPropertySetHandle properties, const char *property, int index, void *value)
Set a single value in a pointer property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexfor multidimenstional properties and is dimension of the one we are settingvaluevalue of the property we are setting
-
OfxStatus (*propSetString)(OfxPropertySetHandle properties, const char *property, int index, const char *value)
Set a single value in a string property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexfor multidimenstional properties and is dimension of the one we are settingvaluevalue of the property we are setting
-
OfxStatus (*propSetDouble)(OfxPropertySetHandle properties, const char *property, int index, double value)
Set a single value in a double property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexfor multidimenstional properties and is dimension of the one we are settingvaluevalue of the property we are setting
-
OfxStatus (*propSetInt)(OfxPropertySetHandle properties, const char *property, int index, int value)
Set a single value in an int property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexfor multidimenstional properties and is dimension of the one we are settingvaluevalue of the property we are setting
-
OfxStatus (*propSetPointerN)(OfxPropertySetHandle properties, const char *property, int count, void *const *value)
Set multiple values of the pointer property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are setting in that property (ie: indices 0..count-1)valuepointer to an array of property values
-
OfxStatus (*propSetStringN)(OfxPropertySetHandle properties, const char *property, int count, const char *const *value)
Set multiple values of a string property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are setting in that property (ie: indices 0..count-1)valuepointer to an array of property values
-
OfxStatus (*propSetDoubleN)(OfxPropertySetHandle properties, const char *property, int count, const double *value)
Set multiple values of a double property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are setting in that property (ie: indices 0..count-1)valuepointer to an array of property values
-
OfxStatus (*propSetIntN)(OfxPropertySetHandle properties, const char *property, int count, const int *value)
Set multiple values of an int property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are setting in that property (ie: indices 0..count-1)valuepointer to an array of property values
-
OfxStatus (*propGetPointer)(OfxPropertySetHandle properties, const char *property, int index, void **value)
Get a single value from a pointer property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexrefers to the index of a multi-dimensional propertyvaluepointer the return location
-
OfxStatus (*propGetString)(OfxPropertySetHandle properties, const char *property, int index, char **value)
Get a single value of a string property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexrefers to the index of a multi-dimensional propertyvaluepointer the return location
-
OfxStatus (*propGetDouble)(OfxPropertySetHandle properties, const char *property, int index, double *value)
Get a single value of a double property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexrefers to the index of a multi-dimensional propertyvaluepointer the return location
-
OfxStatus (*propGetInt)(OfxPropertySetHandle properties, const char *property, int index, int *value)
Get a single value of an int property.
propertieshandle of the thing holding the propertypropertystring labelling the propertyindexrefers to the index of a multi-dimensional propertyvaluepointer the return location
-
OfxStatus (*propGetPointerN)(OfxPropertySetHandle properties, const char *property, int count, void **value)
Get multiple values of a pointer property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are getting of that property (ie: indices 0..count-1)valuepointer to an array of where we will return the property values
-
OfxStatus (*propGetStringN)(OfxPropertySetHandle properties, const char *property, int count, char **value)
Get multiple values of a string property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are getting of that property (ie: indices 0..count-1)valuepointer to an array of where we will return the property values
-
OfxStatus (*propGetDoubleN)(OfxPropertySetHandle properties, const char *property, int count, double *value)
Get multiple values of a double property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are getting of that property (ie: indices 0..count-1)valuepointer to an array of where we will return the property values
-
OfxStatus (*propGetIntN)(OfxPropertySetHandle properties, const char *property, int count, int *value)
Get multiple values of an int property.
propertieshandle of the thing holding the propertypropertystring labelling the propertycountnumber of values we are getting of that property (ie: indices 0..count-1)valuepointer to an array of where we will return the property values
-
OfxStatus (*propReset)(OfxPropertySetHandle properties, const char *property)
Resets all dimensions of a property to its default value.
propertieshandle of the thing holding the propertypropertystring labelling the property we are resetting
-
OfxStatus (*propGetDimension)(OfxPropertySetHandle properties, const char *property, int *count)
Gets the dimension of the property.
propertieshandle of the thing holding the propertypropertystring labelling the property we are resettingcountpointer to an integer where the value is returned
-
OfxStatus (*propSetPointer)(OfxPropertySetHandle properties, const char *property, int index, void *value)