文本子对象类。

用于表示文本对象的子对象,主要存储子对象的文本,旋转角度,锚点等信息,并提供对子对象进行处理的相关方法。

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

语法

C#
public class TextPart : IDisposable

备注

当该对象已被 Dispose方法释放后,再调用该对象成员的时候,则会抛出ObjectDisposedException异常。

示例

以下代码示范如何将文本子对象添加到文本对象中。

CopyC#
public static void TextPartExmaples()
{
    // 设置文本子对象的属性
    TextPart textPart = new TextPart();
    textPart.AnchorPoint=new Point2D(500, 500);
    textPart.Rotation=30;
    textPart.Text="示例";
    textPart.X=100;
    textPart.Y=100;
    textPart.Offset(10.0, 20.0);
    // 将子对象添加到文本对象中
    GeoText geotext = new GeoText();
    geotext.AddPart(textPart);
}

继承层次

System..::.Object
  SuperMap.Data..::.TextPart

请参见