예제 #1
0
 /// <summary>
 /// Sets offset for the drawing line. For positive values, the line drawing will be shifted to the right, otherwise it will be shifted to the left. I.e., the value calculated on the current bar will be drawn shifted relatively to the current bar. 
 /// </summary>
 /// <param name="index"></param>
 /// <param name="shift"></param>
 protected void SetIndexStyle(int index, int type, int style = EMPTY, int width = EMPTY, color clr = default(color))
 {
     throw new NotImplementedException();
 }
예제 #2
0
 /// <summary>
 /// 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.
 /// 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
 /// </summary>
 /// <param name="name">Object name.</param>
 /// <param name="text">A text describing the object.</param>
 /// <param name="font_size">Font size in points.</param>
 /// <param name="font">Font name.</param>
 /// <param name="text_color">Text color.</param>
 /// <returns></returns>
 protected bool ObjectSetText(string name, string text, int font_size, string font = null, color text_color = new color())
 {
     throw new NotImplementedException();
 }