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

In This Topic
    Export Class
    In This Topic
    Class for exporting projects and project data to various formats. The following example shows how to use class Export.
    Inheritance Hierarchy

    System.Object
       Eplan.EplApi.HEServices.Export

    Syntax
    public class Export 
    public ref class Export 
    Example
    The following example shows how to use class Export.
    Export oExport = new Export();
    ArrayList oPagesAL = new ArrayList();
    oPagesAL.Add(m_oProject.Pages[2]);
    oPagesAL.Add(m_oProject.Pages[3]);
    oExport.PdfPages(oPagesAL, "EPLAN_default_value", "$(TMP)\\1.pdf", Export.DegreeOfColor.BlackAndWhite, true, "", true);
    
    
    Public Constructors
     NameDescription
    Public ConstructorOverloaded.   
    Top
    Public Methods
     NameDescription
    Public MethodDestructor  
    Public MethodOverloaded. Exports a page of a project as a DXF/DWG file. Export settings are taken from the scheme passed in the 'sScheme' parameter It is decided by the settings whether the target is email or a file.  
    Public MethodOverloaded. Exports pages of a project as a DXF/DWG file. Export settings are taken from the scheme passed in the 'sScheme' parameter It is decided by the settings whether the target is email or a file.  
    Public MethodExports pages of a project as a DXF/DWG file. Export settings are taken from the scheme passed in the 'sScheme' parameter  
    Public MethodOverloaded. Exports a page of a project as a DXF/DWG file. Export settings are taken from the scheme passed in the 'sScheme' parameter  
    Public MethodOverloaded. Exports a page to the DXF/DWG format and sends it by email. Export settings are taken from the scheme passed in the 'sScheme' parameter  
    Public MethodOverloaded. Exports a complete project as DXF/DWG files. Export settings are taken from the scheme passed in the 'sScheme' parameter It is decided by the settings whether the target is email or a file.  
    Public MethodOverloaded. Exports a complete project as DXF/DWG files. Export settings are taken from the scheme passed in the 'sScheme' parameter  
    Public MethodOverloaded. Exports a complete project to the DXF/DWG format and sends it by email. Export settings are taken from the scheme passed in the 'sScheme' parameter  
    Public MethodOverloaded. Exports a page of a project as image file. Eplan.EplApi.DataModel.Page.PageType of page can not be Eplan.EplApi.DataModel.DocumentTypeManager.DocumentType  
    Public MethodOverloaded. Exports a page of a project as image file. Eplan.EplApi.DataModel.Page.PageType of page can not be Eplan.EplApi.DataModel.DocumentTypeManager.DocumentType Returns the name of the created file.  
    Public MethodExports a page of a project as image file. Eplan.EplApi.DataModel.Page.PageType of page can not be Eplan.EplApi.DataModel.DocumentTypeManager.DocumentType  
    Public MethodOverloaded. Exports a complete project as image files but instead of pages which Eplan.EplApi.DataModel.Page.PageType is Eplan.EplApi.DataModel.DocumentTypeManager.DocumentType  
    Public MethodOverloaded. Exports a complete project as image files but instead of pages which Eplan.EplApi.DataModel.Page.PageType is Eplan.EplApi.DataModel.DocumentTypeManager.DocumentType Returns an array of strings containing names of the created files.  
    Public MethodOverloaded. Exports pages of one project as PDF file.  
    Public MethodOverloaded. Exports one project as PDF file.  
    Public MethodOverloaded. Exports a project in PXF format.  
    Top
    See Also