f$Structure_node_edit (f$Struktur_kn_aendern)
f$Structure_node_edit (f$Struktur_kn_aendern)
A node in a structure dialog is modified with this function.
Syntax: | Status = f$Struktur_kn_aendern (StructureNumber, Text, Name, SizeNo,Style) | |||
| Argument | Type | Meaning | |
| Number | Integer | Number returned by f$Structure_open | |
| Text | String | Node caption | |
| Name | String | Name of the node | |
| SizeNo | Integer | Size: 1 – normal, 2: double width, 3: double height, 4: double width and double height | |
| Style | Integer | Allocation to a style (see f$Structure_Style) | |
Result: | Integer | Status: -99: a structure dialog with the given number does not exist -2 : no name entered -1 : a node with this name does not exist 0 : node modified successfully | ||
Example: | status = f$Struktur_kn_aendern (StructureNumber, Node_cur.Text, Node_cur.Name, Node_cur.SizeNo,Node_cur.Style) | |||