sdaiGetADBTypePathx

This call is deprecated, please use call sdaiGetADBTypePath instead.

Syntax

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

[DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBTypePathx")]
public static extern IntPtr sdaiGetADBTypePathx(int_t ADB, int_t typeNameNumber, out IntPtr path);

public static string sdaiGetADBTypePathx(int_t ADB, int_t typeNameNumber)
        {
            IntPtr path = IntPtr.Zero;
            sdaiGetADBTypePathx(ADB, typeNameNumber, out path);
            return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(path);
        }    

Property ADB

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

Property typeNameNumber

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

Property path

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