GetSchemaName

Returns the value as defined by SCHEMA in the loaded EXPRESS schema.

Syntax

public const string ifcenginedll = @"ifcengine.dll";

[DllImport(IFCEngineDLL, EntryPoint = "GetSchemaName")]
public static extern IntPtr GetSchemaName(int_t model, out IntPtr schemaName);

public static string GetSchemaName(int_t model)
        {
            IntPtr schemaName = IntPtr.Zero;
            GetSchemaName(model, out schemaName);
            return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(schemaName);
        }    

Property model

Size: 64 bit / 8 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property schemaName

Size: 64 bit / 8 byte (reference)
...