Name

OfxParameterSuiteV1::paramGetValueAtTime — Gets the value of a parameter at a specific time.

Synopsis

#include "ofxParam.h" 
OfxStatus(*paramGetValueAtTime)(OfxParamHandle paramHandle,
 OfxTimetime,
 ...);
 

Arguments

  • paramHandle - parameter handle to fetch value from
  • time - at what point in time to look up the parameter
  • ... - one or more pointers to variables of the relevant type to hold the parameter's value

Description

This gets the current value of a parameter. The varargs needs to be pointer to C variables of the relevant type for this parameter. See OfxParameterSuiteV1::paramGetValue for notes on the varags list

Returns