GetNameOfInstanceEx

Returns the name of the instance, if the instance does not exist it returns nullptr.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "GetNameOfInstanceEx")]
public static extern IntPtr GetNameOfInstanceEx(Int64 model, Int64 owlInstance, out IntPtr name);

public static string GetNameOfInstanceEx(Int64 model, Int64 owlInstance)
        {
            IntPtr name = IntPtr.Zero;
            GetNameOfInstanceEx(model, owlInstance, out name);
            return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(name);
        }    

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 owlInstance

Size: 64 bit / 8 byte (value)
The handle to the specific instance in the design tree. The instance handle is static within one open model but is most probably different when the same instance is opened in another model. The instance is always exactly of one unique class.

Property name

Size: 64 bit / 8 byte (reference)
This attribute represents the name of the instance (given as char array / ASCII). The name is defined in space allocated by the library, this memory will be released as soon as the model is closed, or memory release is forced by CleanMemory.

Example (based on pure API calls)

Here you can find code snippits that show how the API call GetNameOfInstanceEx can be used.

using RDF;      //  include at least engine.cs within your solution

static void Main(string[] args)
{
    Int64 model = RDF.engine.CreateModel();

    if (model != 0)
    {
        //
        //  Classes
        //
        Int64   classCube = RDF.engine.GetClassByName(model, "Cube");

        RDF.engine.CreateInstance(classCube, (string) null);
        RDF.engine.CreateInstance(classCube, (string) null);
        RDF.engine.CreateInstance(classCube, (string) null);

        //
        //  The following setting makes sure all instance handles are in an ordered list
        //  In certain cases where several models are open or in case of conversion
        //  between formats this can be handy and / or time efficient.
        //
        Int64   instanceCnt = 0;
        RDF.engine.OrderedHandles(model, (IntPtr) 0, (IntPtr) 0, out instanceCnt, 4, 4);
        System.Diagnostics.Debug.Assert(instanceCnt == 3);

        //
        //  Datatype Properties (attributes)
        //
        Int64   propertyLength = RDF.engine.GetPropertyByName(model, "length");

        //
        //  Instances (creating)
        //
        Int64   myInstanceI = RDF.engine.CreateInstance(classCube, ""),
                myInstanceII = RDF.engine.CreateInstance(classCube, "secondInstance");
        System.Diagnostics.Debug.Assert(myInstanceI == instanceCnt + 1);
        System.Diagnostics.Debug.Assert(myInstanceII == instanceCnt + 2);

        double  length = 2.0;
        RDF.engine.SetDatatypePropertyEx(model, myInstanceI, propertyLength, ref length, 1);

        IntPtr  instanceNamePtrI = IntPtr.Zero;
        RDF.engine.GetNameOfInstanceEx(model, myInstanceI, out instanceNamePtrI);
        string  instanceNameI = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrI);

        length += 1.0;
        RDF.engine.SetDatatypePropertyEx(model, myInstanceII, propertyLength, ref length, 1);

        IntPtr  instanceNamePtrII = IntPtr.Zero;
        RDF.engine.GetNameOfInstanceEx(model, myInstanceII, out instanceNamePtrII);
        string  instanceNameII = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrII);

        RDF.engine.SetNameOfInstanceEx(model, myInstanceI, "firstInstance");
        RDF.engine.SetNameOfInstanceEx(model, myInstanceII, (string) null);

        IntPtr  instanceNamePtrIII = IntPtr.Zero;
        RDF.engine.GetNameOfInstanceEx(model, myInstanceI, out instanceNamePtrIII);
        string  instanceNameIII = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrIII);

        IntPtr  instanceNamePtrIV = IntPtr.Zero;
        RDF.engine.GetNameOfInstanceEx(model, myInstanceII, out instanceNamePtrIV);
        string  instanceNameIV = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrIV);

        //
        //  The retrieved instance names have the following values 
        //      instanceNameI   :  ''
        //      instanceNameII  :  'secondInstance'
        //      instanceNameIII :  'firstInstance'
        //      instanceNameIV  :  null
        //

        //
        //  The resulting model can be viewed in 3D-Editor.exe
        //
        RDF.engine.SaveModel(model, "c:\\created\\myFile.bin");
        RDF.engine.CloseModel(model);
    }
}