Commit fc7404cf authored by Claes Sjofors's avatar Claes Sjofors

Dox fixes

parent d29fca9c
...@@ -11228,7 +11228,7 @@ string <t>name <t>name of object. ...@@ -11228,7 +11228,7 @@ string <t>name <t>name of object.
<c> string parent; <c> string parent;
<c> parent = GetChild("Roller-Motor"); <c> parent = GetParent("Roller-Motor");
</TOPIC> </TOPIC>
<TOPIC> getnextsibling() <style> function <TOPIC> getnextsibling() <style> function
......
...@@ -6216,6 +6216,7 @@ functions. Here follows a list of build in functions that also can be used in Ge ...@@ -6216,6 +6216,7 @@ functions. Here follows a list of build in functions that also can be used in Ge
DeleteObject <t><t>Delete an object.<link>DeleteObject() DeleteObject <t><t>Delete an object.<link>DeleteObject()
GetCurrentObject <t><t>Returns the identity of the last created object.<link>GetCurrentObject() GetCurrentObject <t><t>Returns the identity of the last created object.<link>GetCurrentObject()
GetFirstObject <t><t>Get the first object. <link>GetFirstObject() GetFirstObject <t><t>Get the first object. <link>GetFirstObject()
GetGraphName <t><t>Get name of current graph. <link>GetGraphName()
GetNextObject <t><t>Get the next object. <link>GetNextObject() GetNextObject <t><t>Get the next object. <link>GetNextObject()
GetObjectAttribute <t><t>Get an attribute value of an object. <link>GetObjectAttribute() GetObjectAttribute <t><t>Get an attribute value of an object. <link>GetObjectAttribute()
GetObjectBorder <t><t>Get object border. <link>GetObjectBorder() GetObjectBorder <t><t>Get object border. <link>GetObjectBorder()
...@@ -6503,6 +6504,21 @@ Returns an integer with the object identity. ...@@ -6503,6 +6504,21 @@ Returns an integer with the object identity.
<c> endwhile <c> endwhile
</topic> </topic>
<topic>GetGraphName() <style>function
GetGraphName()
string GetGraphName()
<h2>Description
Fetches the name for the current graph.
Returns a string with the name.
<b>Example
<c> string name;
<c> name = GetGraphName();
</topic>
<topic>GetNextObject() <style>function <topic>GetNextObject() <style>function
GetNextObject() GetNextObject()
int GetNextObject( int oid) int GetNextObject( int oid)
......
...@@ -6122,6 +6122,7 @@ funktioner. H ...@@ -6122,6 +6122,7 @@ funktioner. H
DeleteObject <t><t>Ta bort ett objekt.<link>DeleteObject() DeleteObject <t><t>Ta bort ett objekt.<link>DeleteObject()
GetCurrentObject <t><t>Returnerar identiteten för senast skapade objekt.<link>GetCurrentObject() GetCurrentObject <t><t>Returnerar identiteten för senast skapade objekt.<link>GetCurrentObject()
GetFirstObject <t><t>Hämta första objekt. <link>GetFirstObject() GetFirstObject <t><t>Hämta första objekt. <link>GetFirstObject()
GetGraphName <t><t>Hämta name på nuvarande graf. <link>GetGraphName()
GetNextObject <t><t>Hämta nästa objekt. <link>GetNextObject() GetNextObject <t><t>Hämta nästa objekt. <link>GetNextObject()
GetObjectAttribute <t><t>Hämta ett attributvärde för ett objekt. <link>GetObjectAttribute() GetObjectAttribute <t><t>Hämta ett attributvärde för ett objekt. <link>GetObjectAttribute()
GetObjectBorder <t><t>Hämta kant för ett objekt. <link>GetObjectBorder() GetObjectBorder <t><t>Hämta kant för ett objekt. <link>GetObjectBorder()
...@@ -6382,6 +6383,19 @@ Returnerar en integer med objektsidentiteten. ...@@ -6382,6 +6383,19 @@ Returnerar en integer med objektsidentiteten.
<c> endwhile <c> endwhile
</topic> </topic>
string GetGraphName()
<h2>Description
Hämta namn på nuvarande graf.
Returnerar en sträng med namnet.
<b>Exempel
<c> string name;
<c> name = GetGraphName();
</topic>
<topic>GetNextObject() <style>function <topic>GetNextObject() <style>function
GetNextObject() GetNextObject()
int GetNextObject( int oid) int GetNextObject( int oid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment