Name

OfxPropertySuiteV1::propGetStringN — Get multiple values of a string property

Synopsis

#include "ofxProperty.h" 
OfxStatus (*propGetStringN) ( OfxPropertySetHandle properties ,
  const char * property ,
  int count ,
  char ** value ) ;
 

Arguments

  • properties - is the handle of the thing holding the property
  • property - is the string labelling the property
  • count - is the number of values we are getting of that property (ie: indicies 0..count-1)
  • value - is a pointer to an array of where we will return the property values

Description

See the note ArchitectureStrings for how to deal with strings.