已过时。由ThemeLabelRangeItems类中对应方法替代。合并一个从指定序号起始的给定个数的标签专题图子项,并赋给合并后标签专题图子项显示风格和名称。 执行该方法后,被合并的对象将被释放,不再可用。

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

语法

C#
[ObsoleteAttribute]
public bool Merge(
	int index,
	int count,
	TextStyle style,
	string caption
)

参数

index
Type: System..::.Int32
指定的标签专题图子项的序号,并以此序号为起始。
count
Type: System..::.Int32
要合并的标签专题图子项个数,即从指定的序号开始计算。
style
Type: SuperMap.Data..::.TextStyle
合并后的标签专题图子项的风格。
caption
Type: System..::.String
合并后的标签专题图子项名称。

返回值

如果合并成功返回true,否则返回false。

示例

以下代码示范了如何合并一个从指定序号起始的给定个数的标签专题图子项。 假设已经获取的地图窗口中的标签专题图,并存储在名为layerTheme的变量中,并且该专题图中包含了多个专题图子项。
CopyC#
public void MergeThemeLabel()
{
    ThemeLabel themeLabel = layerTheme.Theme as ThemeLabel;
    //设置合并后标签专题图子项的显示风格
    TextStyle geoStyle = new TextStyle();
    geoStyle.ForeColor = Color.FromArgb(255, 190, 239);
    geoStyle.FontName = "宋体";
    themeLabel.Merge(0, 2, geoStyle, "小于一千万");

}

版本信息

SuperMap iObjects .NET


在 10.0.0 中过时(编译器警告)
在 10.0.1 中过时(编译器警告)
在 10.1.0 中过时(编译器警告)
在 10.1.1 中过时(编译器警告)
在 10.2.0 中过时(编译器警告)
在 10.2.1 中过时(编译器警告)
在 11.0.0 中过时(编译器警告)
在 11.0.1 中过时(编译器警告)
在 11.1.1 中过时(编译器警告)
在 11.2.0 中过时(编译器警告)
在 11.2.1 中过时(编译器警告)
在 8.1.0 中过时(编译器警告)
在 8.1.1 中过时(编译器警告)
在 9.0.0 中过时(编译器警告)
在 9.0.1 中过时(编译器警告)
在 9.1.0 中过时(编译器警告)
在 9.1.2 中过时(编译器警告)

请参见