bool ObjectSetFiboDescription(string name, string text)
The function assigns a new description to a level of a Fibonacci object. The amount of Fibonacci levels depends on the object type. The maximum amount of Fibonacci levels is 32.
この関数は、フィボナッチ オブジェクトのレベルに新しい説明を割り当てます。フィボナッチ レベルの総数は、オブジェクト型に依存します。フィボナッチレベルの最大数量は 32 です。
To get the detailed error information, one has to call the GetLastError() function.
詳細なエラー情報を受け取るためには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 | <b>name</b> - Object name. オブジェクトの名前。 <b>index</b> - Index of the Fibonacci level (0-31). フィボナッチレベル(0~31)のインデックス <b>text</b> - New description of the level. レベルの新しい説明。 |
Sample:
サンプル:
1 | ObjectSetFiboDescription("MyFiboObject",2,"Second line"); |