GetNameOfInstance
Syntax
public const string enginedll = @"engine.dll"; [DllImport(enginedll, EntryPoint = "GetNameOfInstance")] public static extern IntPtr GetNameOfInstance(Int64 owlInstance, out IntPtr name);
Property owlInstance
Size: 64 bit / 8 byte (value)Property name
Size: 32 bit / 4 byte (reference)
Example (based on pure API calls)
Here you can find code snippits that show how the API call GetNameOfInstance 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"); // // 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(RDF.engine.GetVolume(myInstanceI, (IntPtr) 0, (IntPtr) 0) == 0.0); double length = 2.0; RDF.engine.SetDatatypeProperty(myInstanceI, propertyLength, ref length, 1); IntPtr instanceNamePtrI = IntPtr.Zero; RDF.engine.GetNameOfInstance(myInstanceI, out instanceNamePtrI); string instanceNameI = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrI); length += 1.0; RDF.engine.SetDatatypeProperty(myInstanceII, propertyLength, ref length, 1); IntPtr instanceNamePtrII = IntPtr.Zero; RDF.engine.GetNameOfInstance(myInstanceII, out instanceNamePtrII); string instanceNameII = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrII); RDF.engine.SetNameOfInstance(myInstanceI, "firstInstance"); RDF.engine.SetNameOfInstance(myInstanceII, (string) null); System.Diagnostics.Debug.Assert(RDF.engine.GetArea(myInstanceI, (IntPtr) 0, (IntPtr) 0) == 24.0); System.Diagnostics.Debug.Assert(RDF.engine.GetVolume(myInstanceII, (IntPtr) 0, (IntPtr) 0) == 27.0); IntPtr instanceNamePtrIII = IntPtr.Zero; RDF.engine.GetNameOfInstance(myInstanceI, out instanceNamePtrIII); string instanceNameIII = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(instanceNamePtrIII); IntPtr instanceNamePtrIV = IntPtr.Zero; RDF.engine.GetNameOfInstance(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); } }