Effects.CurveDesigner.GetGraphicalSettings method |
|
Remarks
Retrieves the current graphical settings for the given curve designer. Settings can be modified through the Effects.CurveDesigner.SetGraphicalSettings method.
For details about using the Curve Designer refer to the How to create custom volume curves tutorial.
For further details about defining a volume automation procedure refer to the How to define a volume automation procedure section.
Syntax
[Visual Basic] Public Function GetGraphicalSettings ( nDesignerUniqueId as Int32, ByRef settings as CURVE_DESIGNER_SETTINGS ) as enumErrorCodes |
[C#] public enumErrorCodes GetGraphicalSettings ( Int32 nDesignerUniqueId, ref CURVE_DESIGNER_SETTINGS settings ); |
[C++] public: enumErrorCodes GetGraphicalSettings ( Int32 nDesignerUniqueId, CURVE_DESIGNER_SETTINGS __gc *settings ); |
Parameter |
Description |
|
|
nDesignerUniqueId |
Unique identifier of the curve designer returned by a previous call to the Effects.CurveDesigner.Create method |
settings |
Reference to the object of class CURVE_DESIGNER_SETTINGS that receives in output graphical settings of the curve designer. |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred (see the LastError property for further error details) |
enumErrorCodes.ERR_NOERROR (0) |
The method call was successful. |