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

In This Topic
    Transformation Class
    In This Topic
    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 
    public ref 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 ConstructorOverloaded.   
    Top
    Public Properties
     NameDescription
    Public PropertyGet drawing limits  
    Public PropertyGet height of imported element  
    Public PropertyGet width of imported element  
    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
    Public Methods
     NameDescription
    Public MethodDestructor.  
    Top
    See Also