API Help
Eplan.EplApi.HEServices Namespace / Transformation Class
Members Example

Transformation Class
Class to determine displacement and scaling of objects (used for methods of the Import class). The following example shows how to use class Import.
Inheritance Hierarchy

System.Object
   Eplan.EplApi.HEServices.Transformation

Syntax
public class Transformation 
Example
The following example shows how to use class Import.
Import oImport = new Import();
Transformation oTransformation = new Transformation();
oTransformation.XOffset = 80;
oTransformation.XScale = 0.1;
oTransformation.YOffset = 60;
oTransformation.YScale = 0.1;
oImport.DXFPage("$(MD_DXFDWG)\\test_6c.dxf", m_oProject.Pages[5], oTransformation, "");


Public Constructors
 NameDescription
Public ConstructorDefault constructor.  
Top
Public Properties
 NameDescription
Public PropertySet offset in x-direction  
Public PropertySet scaling in x-direction  
Public PropertySet scaling reference in x-direction  
Public PropertySet offset in y-direction  
Public PropertySet scaling in y-direction  
Public PropertySet scaling reference in y-direction  
Top
See Also