Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / HiddenLinesViewOnFile Class
Members Example

In This Topic
    HiddenLinesViewOnFile Class
    In This Topic
    Class that saves a vectorial image of the current scene of the active viewport on disk in EMF format.
    Syntax
    'Declaration
     
    Public Class HiddenLinesViewOnFile 
       Inherits HiddenLinesViewOnClipboard
    public class HiddenLinesViewOnFile : HiddenLinesViewOnClipboard 
    Example
    The following code fragment demonstrates how to save a vectorial image of the current scene of the active viewport on disk.
    HiddenLinesViewOnFile hdlView = new HiddenLinesViewOnFile(new HiddenLinesViewSettings(viewport1), fileName);
    viewport1.StartWork(hdlView);
    Dim hdlView As New HiddenLinesViewOnFile(new HiddenLinesViewSettings(Viewport1), FileName)
    Viewport1.StartWork(hdlView)
    Inheritance Hierarchy

    System.Object
       devDept.Eyeshot.WorkUnit
          devDept.Eyeshot.HiddenLinesView
             devDept.Eyeshot.HiddenLinesViewOnClipboard
                devDept.Eyeshot.HiddenLinesViewOnFile

    See Also