AutoCAD .Net 获取用户输入——GetDistance

GetDistance用于让用户指定距离值

Document doc = Application.DocumentManager.MdiActiveDocument;
double value = 0.0;
PromptDistanceOptions options = new PromptDistanceOptions("\n请指定距离: ");
options.BasePoint = new Point3d(0, 0, 0);
options.UseBasePoint = true;

PromptDoubleResult result = doc.Editor.GetDistance(options);
switch (result.Status)
{
    case PromptStatus.OK:
        value = result.Value;
        doc.Editor.WriteMessage("\nDistance = " + value);
        break;

    case PromptStatus.Cancel:
        doc.Editor.WriteMessage("\n用户取消了输入");
        break;

    default:
        break;
}

PromptDistanceOptions用于设置用户输入的控制项。
UseBasePoint为true时,会从BasePoint绘制一条示意线到当前鼠标位置,并计算这之间的距离。
这里写图片描述
Only2d为true时,在计算点的距离时,会忽略掉点的Z坐标来计算距离。
如要设置允许用户任意输入、关键字等,请参考文章
http://blog.csdn.net/hisinwang/article/details/78887888

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值