添加一个单值专题图子项到单值专题图子项列表中。
命名空间:
SuperMap.Mapping程序集: SuperMap.Mapping (in SuperMap.Mapping)
版本: dll
语法
C# |
---|
public int Add( ThemeUniqueItem item ) |
参数
- item
- Type: SuperMap.Mapping..::.ThemeUniqueItem
将被添加的单值专题图子项。
返回值
如果添加成功返回被添加子项在序列中的序号,否则返回-1。示例
以下代码了如何添加单值专题图子项到单值专题图中。
CopyC#
public Int32 AddThemeUniqueItemTest() { //实例化单值专题图子项,并设置相应属性 ThemeUnique theme = new ThemeUnique(); ThemeUniqueItem item = new ThemeUniqueItem(); item.Caption = "Caption"; item.IsVisible = false; item.Unique = "Unique"; //添加单值专题图子项 theme.Add(item); //返回单值专题图子项个数 return (theme.Count); }