关于线性标注的引出线
<p>ExtLine1Point 指定尺寸界线1的原点。 <a href="http://www.mjtd.com/object/acad2004/idh_extline1startpoint.htm"><p>ExtLine1StartPoint</a> 指定第一条尺寸界线的起点。 <a href="http://www.mjtd.com/object/acad2004/idh_extline1suppress.htm">
<p>ExtLine1Suppress</a> 设置是否显示第一条尺寸界线。 <a href="http://www.mjtd.com/object/acad2004/idh_extline2endpoint.htm">
<p>ExtLine2EndPoint</a> 指定第二条尺寸界线的终点。 <a href="http://www.mjtd.com/object/acad2004/idh_extline2point.htm">
<p>ExtLine2Point</a> 指定尺寸界线2的原点。 <a href="http://www.mjtd.com/object/acad2004/idh_extline2startpoint.htm">
<p>ExtLine2StartPoint</a> 指定第二条尺寸界线的起点。</p>
<p> </p>
<p>这上面是VBA里面留出来的属性,C#里有没有类似的方法可以实现呢?我在</p>
<div class="book-title">AutoCAD .NET 开发人员手册</div>
<p>里面找到一段代码如下:</p>
<p>// Create the rotated dimension</p><pre class="codeLine"> RotatedDimension acRotDim = new RotatedDimension();</pre><pre class="codeLine"> acRotDim.SetDatabaseDefaults();</pre><pre class="codeLine"> acRotDim.XLine1Point = new Point3d(0, 0, 0);</pre><pre class="codeLine"> acRotDim.XLine2Point = new Point3d(6, 3, 0);</pre><pre class="codeLine"> acRotDim.Rotation = 0.707;</pre><pre class="codeLine"> acRotDim.DimLinePoint = new Point3d(0, 5, 0);</pre><pre class="codeLine"> acRotDim.DimensionStyle = acCurDb.Dimstyle;</pre>
<p> </p>
<p> </p>
<p>这种方法比较接近还是不能设置尺寸界线的座标,求一个方法,谢谢.</p> <p>贴图说明下</p>
页:
[1]