删除一个指定序号的单值专题图子项。

命名空间:  SuperMap.Mapping
程序集:  SuperMap.Mapping (in SuperMap.Mapping)
版本: dll

语法

C#
public bool Remove(
	int index
)

参数

index
Type: System..::.Int32
指定的将被删除的单值专题图子项序列的序号。

返回值

如果删除成功,返回 true;否则返回 false。

示例

以下代码示范了如何删除单值专题图子项。 假设已有单值专题图themeUnique,并包含多个单值专题图子项
CopyC#
public Int32 RemoveTest()
{
    //实例化单值专题图
    ThemeUnique theme = new ThemeUnique(themeUnique);

    //删除序号为2的单值专题图子项
    theme.Remove(2);

    //返回该专题图包含子项的个数
    return (theme.Count);
}

请参见