This document is archived and information here might be outdated.  Recommended version.


IAffineTransformation2D.PostMultiply Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IA > IAffineTransformation2D Interface > IAffineTransformation2D.PostMultiply Method
ArcGIS Developer Help

IAffineTransformation2D.PostMultiply Method

Post-multiplies the transformation by another transformation.

[Visual Basic .NET]
Public Sub PostMultiply ( _
    ByVal postTransform As IAffineTransformation2D _
)
[C#]
public void PostMultiply (
    IAffineTransformation2D postTransform
);
[C++]
HRESULT PostMultiply(
  IAffineTransformation2D* postTransform
);
[C++]
Parameters
postTransform 

postTransform is a parameter of type IAffineTransformation2D*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Multiplies the existing affine transformation matrix with another affine transformation matrix.  The multiplication occurs after the existing transformation is applied.  This is a right side matrix multiplication.

See Also

IAffineTransformation2D Interface