找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 1027|回复: 0

[分享] Create simple table

[复制链接]

已领礼包: 859个

财富等级: 财运亨通

发表于 2014-6-7 03:14:57 | 显示全部楼层 |阅读模式

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

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

×
        [CommandMethod("CreatePlainTable")]
        public void CreateMyTable()
        {
            // based on code written by Kean Walmsley
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = doc.Editor;
            using (Transaction tr = db.TransactionManager.StartTransaction())
            {
                BlockTable bt = (BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead);
                BlockTableRecord btr = (BlockTableRecord)tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite);
                Table tbl = new Table();
                tbl.TableStyle = db.Tablestyle;
                tbl.Position = ed.GetPoint("\nPick a point: ").Value;
                TableStyle ts = (TableStyle)tr.GetObject(tbl.TableStyle, OpenMode.ForRead);
                double textht = ts.TextHeight(RowType.DataRow);
                int rows = 10;
                int columns = 4;
                //insert rows
                tbl.InsertRows(1, textht * 2, rows);
                // insert columns
                tbl.InsertColumns(1, textht * 15, columns);// first column is already exist, thus we'll have 5 columns
                //create range to merge the cells in the first row
                CellRange range = CellRange.Create(tbl, 0,0, 0, columns);
                tbl.MergeCells(range);
                // set style for title row
                tbl.Cells[0, 0].Style = "Title";
                tbl.Cells[0, 0].TextString = "Title";

                tbl.Rows[0].Height = textht * 2;
                tbl.InsertRows(1, textht * 2, 1);
                // set style for header row
                tbl.Rows[1].Style = "Header";
                tbl.Rows[1].Height = textht * 1.5;
                //create contents in the first cell and set textstring
                tbl.Cells[1, 0].Contents.Add();
                tbl.Cells[1, 0].Contents[0].TextString = "Header #1";
                for (int c = 1; c <= columns; c++)
                {
                    //for all of the rest cells just set textstring (or value)
                    tbl.Cells[1, c].TextString = "Header  #" + (c + 1).ToString();
                }

                for (int r = 2; r < rows + 2; r++)//exact number of data rows + title row + header row
                {
                    // set style for data row
                    tbl.Rows[r].Style = "Data";
                    tbl.Rows[r].Height = textht * 1.25;
                    //create contents in the first cell and set textstring
                    tbl.Cells[r, 0].Contents.Add();
                    tbl.Cells[r, 0].Contents[0].TextString = "DataRow  #" + (r - 1).ToString() + " Col 1";
                    for (int c = 1; c <= columns; c++)
                    {
                        //for all of the rest cells just set textstring (or value)
                        tbl.Cells[r, c].TextString = "DataRow  #" + (r - 1).ToString() + " Col " + (c + 1).ToString(); ;
                    }
                }
                // set equal column widths
                foreach (Column col in tbl.Columns)
                    col.Width = textht * 15;

                //change last column values just to show data formatting               
                // to set numeric values with precision of 3 decimals:
                // create DataTypeParameter object
                // set data type,set value, then data format for every cell:
               
                DataTypeParameter dtp = new DataTypeParameter();
                dtp.DataType = DataType.Double;
                dtp.UnitType = UnitType.Distance;  // or  UnitType.Unitless

                //populate column with dummy values:
                for (int r = 2; r < rows + 2; r++)//exact number of data rows + title row + header row  
                {
                    tbl.Cells[r, columns].Contents[0].DataType = dtp;
                    tbl.Cells[r, columns].Contents[0].Value = Math.Pow(Math.PI, 1.0 / r);
                    tbl.Cells[r, columns].Contents[0].DataFormat = "%lu2%pr3%th44";//or "%lu2%pr3%"
                }
                tbl.GenerateLayout();
                btr.AppendEntity(tbl);
                tr.AddNewlyCreatedDBObject(tbl, true);
                tr.Commit();
            }
        }
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-18 23:53 , Processed in 0.437336 second(s), 28 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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