ADC Home > Reference Library > Reference > Apple Applications > Final Cut Pro/Final Cut Express > FxPlug Reference
|
FxOptionalParameterCreationAPI |
Declared In: |
Defines the methods for creating parameters of optional types. These parameter types are not guaranteed to be supported by all host applications.
See discussion of parameter IDs in the header file FxPlug/FxParameterAPI.h.
addGradientWithName:parmId:parmFlags: |
Creates a gradient parameter.
- (BOOL)addGradientWithName:(NSString *)name parmId:(UInt32)parmId parmFlags:(FxParameterFlags)flags;
name
parmId
flags
Returns YES if the application successfully creates a gradient parameter; NO otherwise.
addHistogramWithName:parmId:parmFlags: |
Creates a histogram parameter.
- (BOOL)addHistogramWithName:(NSString *)name parmId:(UInt32)parmId parmFlags:(FxParameterFlags)flags;
name
parmId
flags
Returns YES if the application successfully creates a histogram parameter; NO otherwise.
|