get_Parameters Method

public ParameterCollection &get_Parameters()

public const ParameterCollection &get_Parameters() const

 

Description

The Parameters property provides access to a ParameterCollection that stores values used to customize this MathTransform.  For a description of the parameters needed by each type of MathTransform, click on the description for the appropriate element in the ClassType enumeration.

 

Example

void MathTransform_getParameters(GeoCalc.MathTransform & mt)

{

if(mt.get_Class() == GeoCalc.MathTransform.ClassType.Affine)

{

mt.get_Parameters().set_FloatItem(L"dx", 0);

mt.get_Parameters().set_FloatItem(L"dxx", 1.5);

mt.get_Parameters().set_FloatItem(L"dxy", 1);

mt.get_Parameters().set_FloatItem(L"dy", 0);

mt.get_Parameters().set_FloatItem(L"dyy", 0.34);

mt.get_Parameters().set_FloatItem(L"dyx", 1);

}

}