获取或设置颜色集合中指定序号的颜色值。
命名空间:
SuperMap.Data程序集: SuperMap.Data (in SuperMap.Data)
版本: dll
语法
C# |
---|
public Color this[ int index ] { get; set; } |
参数
- index
- Type: System..::.Int32
指定的颜色值的序号(从0开始)。
示例
以下代码示范如何设置颜色集合中指定序号的颜色值。
CopyC#
public void TestSet() { Color[] colorArray = new Color[] { Color.FromArgb(255, 255, 255) }; // Set the color where the index is 1 to black. // 将序号为1的颜色设置为黑色 Colors colors = new Colors(colorArray); colors[0] = Color.FromArgb(0, 0, 0); }