void SetIndexStyle( int index, int type, void style, void width, void clr)
设置新型、样式、宽度和颜色为一条指定的显示线。
参数:
index - 索引线。必须在0至7之间。
type - 样式风格。可以是划线风格列表其中一个。
style - 画线风格。可以应用单线。可以是划线风格列表其中一个。 EMPTY 值表示风格不变。
width - 线的宽度。线的宽度可以是1,2,3,4,5。 EMPTY 值表示着风格不变。
clr - 线的颜色。.现存的参量表示颜色将不会改变。
示例:
- SetIndexStyle(3, DRAW_LINE, EMPTY, 2, Red);
复制代码
|