bool ObjectSetText(string name, stirng text, int font_size, string font=NULL, color text_color=CLR_NONE)
Changes the object description. For objects of OBJ_TEXT and OBJ_LABEL, this description is shown as a text line in the chart. If the function succeeds, the returned value will be TRUE. Otherwise, it is FALSE. To get the detailed error information, one has to call the GetLastError() function.
オブジェクトの説明を変更します。OBJ_TEXT および OBJ_LABEL のオブジェクトは、この説明文は、チャート内のテキスト行として表示されます。正常終了した場合、返される値は TURE になります。それ以外の場合は、FALSE になります。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters of font_size, font_name and text_color are used for objects of OBJ_TEXT and OBJ_LABEL only. For objects of other types, these parameters are ignored.
フォントサイズ、フォント名、フォントカラーのパラメータは、OBJ_TEXT と OBJ_LABEL のオブジェクトに対してのみ使用されます。他の型のオブジェクトは、これらのパラメータを無視します。
See also ObjectDescription() function.
参照 ObjectDescription() 関数
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <b>name</b> - Object name. オブジェクトの名前。 <b>text</b> - A text describing the object. オブジェクトの説明テキスト。 <b>font_size</b> - Font size in points. ポイントでのフォントサイズ。 <b>font</b> - Font name. フォントの名前。 <b>text_color</b> - Text color. テキストの色。 |
Sample:
サンプル:
1 | ObjectSetText("text_object", "Hello world!", 10, "Times New Roman", Green); |