添加统计专题图的子项到专题图子项列表中。
命名空间:
SuperMap.Mapping程序集: SuperMap.Mapping (in SuperMap.Mapping)
版本: dll
语法
C# |
---|
public int Add( ThemeGraphItem item ) |
参数
- item
- Type: SuperMap.Mapping..::.ThemeGraphItem
被添加的统计专题图子项。
返回值
如果添加成功返回被添加子项在子项序列中的序号,否则返回 -1 。示例
以下代码示范了如何添加统计专题图的子项到统计专题图子项列表中。
CopyC#
public Boolean AddTest() { //实例化统计专题图对象 ThemeGraph theme = new ThemeGraph(); //实例化统计专题图子项对象,并设置其属性 ThemeGraphItem item = new ThemeGraphItem(); item.Caption = "Item1"; item.GraphExpression = "GrapExpression"; //添加统计专题图子项 theme.Add(item); //查看返回值,如果添加成功返回true,否则false if (theme.Count == 1) { return true; } else return false; }