将给定的单值专题图子项插入到指定序号的位置。
命名空间:
SuperMap.Mapping程序集: SuperMap.Mapping (in SuperMap.Mapping)
版本: dll
语法
C# |
---|
public bool Insert( int index, ThemeUniqueItem item ) |
参数
- index
- Type: System..::.Int32
指定的单值专题图子项序列的序号。
- item
- Type: SuperMap.Mapping..::.ThemeUniqueItem
将被插入的单值专题图子项。
返回值
如果插入成功返回 true,否则返回 false。示例
以下代码示范了如何插入单值专题图子项到单值专题图子项列表中。
假设已有单值专题图themeUnique,并包含多个单值专题图子项。
CopyC#
public Int32 InsertTest() { //实例化单值专题图 ThemeUnique theme = new ThemeUnique(themeUnique); //将给定的单值专题图子项插入到指定序号的位置 theme.Insert(0, new ThemeUniqueItem()); //返回该专题图包含子项的个数 return (theme.Count); }