找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 988|回复: 2

[求助] C# 在指定插入点插入CAD表格

[复制链接]
发表于 2018-1-28 17:05:19 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
如题,提示用户指定表格插入点,自动生成固定行数(比如21)和列数(比如1)的表格,指定行距、列距,插入文字的样式、字高,对齐方式内属性。
思路:创建一个CAD表格对象,利用AppendEntity生成。但在网上查询不到CAD表格对象的定义,以及其属性值。
望大神赐教~~~~
谢谢。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 20个

财富等级: 恭喜发财

发表于 2018-1-28 17:19:27 | 显示全部楼层
有几个表格方面的资料

Creating table using the Table.InsertColumns and Table.InsertRows is quite tricky and below are certain scenarios that can be useful :

Scenario 1: Using only table.InsertColumns :
Along with the specified number of columns, a single default row(without cells) is created at row index 0.

Scenario 2: Using only table.InsertRows :
Along with the specified number of rows,a single default column is created (with cells) at column index 0.

for example, table.InsertRows(0, 5, 3); creates table as shown below:
image_30888.jpg
Scenario 3: Using index to create rows or columns :
Here, the method is table.InsertRows(int row,double height,int rows)
int row = row index
double height = rows(exculding default row)
int rows = number of rows inserted

As in the above example, table.InsertRows(0, 5, 3); creates a table with 4 rows( 3 + 1 default row) and 1 column at index 0.

Since first parameter(index) is 0, every row is inserted at position 0 and pushes the previously inserted row(if any) below. So we can find the default row at the bottom most position after creation.

Scenario 4:  We can use table.InsertRows in a loop to create rows of varying height :
Rows of varying height can be created as follows :            

  1.     List<double> rowHeight = new List<double>();
  2.     rowHeight.Add(10);
  3.     rowHeight.Add(20);
  4.     rowHeight.Add(30);
  5.     int nRows = rowHeight.Count;
  6.     for (int iRow = 0; iRow < nRows; iRow++)
  7.     {
  8.        table.InsertRows(0, rowHeight[iRow], 1);
  9.     }

NOTE : the default row and column can be deleted if not required using DeleteColumns and DeleteRows API


下面代码查询每个CELL的STYLES

  1. [CommandMethod("GetRowType")]
  2. public void GetRowType()
  3. {
  4.     Document doc = Application.DocumentManager.MdiActiveDocument;
  5.     Database db = doc.Database;
  6.     Editor ed = doc.Editor;
  7.     PromptEntityOptions peo = new PromptEntityOptions("\nSelect Table: ");
  8.     peo.SetRejectMessage("\nInvalid selection...");
  9.     peo.AddAllowedClass(typeof(Table), true);
  10.     PromptEntityResult per = ed.GetEntity(peo);
  11.     if (per.Status != PromptStatus.OK)
  12.         return;
  13.     using (Transaction Tx = db.TransactionManager.StartTransaction())
  14.     {
  15.         Table table = Tx.GetObject(per.ObjectId, OpenMode.ForRead) as Table;
  16.         for (int row = 0; row < table.Rows.Count; row++)
  17.         {
  18.             ed.WriteMessage("\nRow[{0}]: {1}", row, table.Cells[row, -1].Style);
  19.         }
  20.         Tx.Commit();
  21.     }
  22. }

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2018-1-28 21:16:34 来自手机 | 显示全部楼层
谢谢,明天试试。其他大神有其他代码也贴出来学习一下。多谢了。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-11-17 20:35 , Processed in 0.227618 second(s), 34 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表