Solid Edge Draft Type Library
FilePreferences Property
Solid Edge Draft Type Library > DraftDocument Object : FilePreferences Property
Description
Get and set file level preferences.
Property type
Read-only property
Syntax
Visual Basic
Public Property FilePreferences As DraftFilePreferences
Example
Imports System.IO
Imports System.Runtime.InteropServices

Module Example
    <STAThread()> _
    Sub Main()

        Dim objApplication As SolidEdgeFramework.Application = Nothing
        Dim objDraftDocument As SolidEdgeDraft.DraftDocument = Nothing
        Dim objDraftFilePreferences As SolidEdgeDraft.DraftFilePreferences = Nothing

        Try
            OleMessageFilter.Register()

            objApplication = Marshal.GetActiveObject("SolidEdge.Application")
            objDraftDocument = objApplication.ActiveDocument
            objDraftFilePreferences = objDraftDocument.FilePreferences

        Catch ex As Exception
            Console.WriteLine(ex.Message)
        Finally
            OleMessageFilter.Revoke()
        End Try
    End Sub
End Module
using System.IO;
using System.Runtime.InteropServices;

internal static class Example
{
    [STAThread()]
    public static void Main()
    {

        SolidEdgeFramework.Application objApplication = null;
        SolidEdgeDraft.DraftDocument objDraftDocument = null;
        SolidEdgeDraft.DraftFilePreferences objDraftFilePreferences = null;

        try
        {
            OleMessageFilter.Register();

            objApplication = (SolidEdgeFramework.Application)Marshal.GetActiveObject("SolidEdge.Application");
            objDraftDocument = objApplication.ActiveDocument;
            objDraftFilePreferences = objDraftDocument.FilePreferences;

        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        finally
        {
            OleMessageFilter.Revoke();
        }
    }
}
See Also

DraftDocument Object  | DraftDocument Members  | Solid Edge ST4 - What's New