Share

Autodesk.AutoCAD.GraphicsInterface.AutoTransform Enumeration

Description

This .NET class wraps the AcGiMapper.AutoTransform ObjectARX class.

This enumeration provides values that describe the automatic transform mode of the mapper.

Note that a logical OR of any combination of AutoTransform enumerators is legal. However, InheritAutoTransform will be ignored if any other enum value is present, and None will be ignored if either Object or Model is present.

C#

public enum AutoTransform {
  InheritAutoTransform = 0,
  Model = 4,
  None = 1,
  TransformObject = 2
}

Visual Basic

Public Enum AutoTransform
  InheritAutoTransform = 0
  Model = 4
  None = 1
  TransformObject = 2
End Enum

Members

Members Description
InheritAutoTransform = 0 Inherit auto transform method from current material's mapper.
Model = 4 Multiply the mapper transform by the model (block) transform.
None = 1 No automatic transform or identity.
TransformObject = 2 Multiply the mapper transform by a transform that scales by the bounds of the current object and translates to the origin of the current object.

Was this information helpful?