GetDateTime

Returns an current date and time according to ISO 8601 without time zone, i.e. formatted as '2099-12-31T23:59:59'.

Syntax

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

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

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

Property model

Size: 32 bit / 4 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 dateTimeStamp

Size: 32 bit / 4 byte (reference)
???.