将给定的统计专题图子项插入到指定序号的位置。

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

语法

C#
public bool Insert(
	int index,
	ThemeGraphItem item
)

参数

index
Type: System..::.Int32
指定的统计专题图子项序列的序号。
item
Type: SuperMap.Mapping..::.ThemeGraphItem
将被插入的统计专题图子项。

返回值

如果插入成功返回值为 true,否则为 false。

示例

以下代码示范了如何插入统计专题图子项到统计专题图子项列表中。 假设已有统计专题图themeGraph,并包含多个统计专题图子项。
CopyC#
private Int32 ThemeGraphInsertTest()
{
    //实例化统计专题图对象
    ThemeGraph theme = new ThemeGraph(themeGraph);

    //将给定的专题图子项插入到指定序号的位置
    Int32 count = theme.Count;
    theme.Insert(0, new ThemeGraphItem());

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

}

请参见