Kean Walmsley

July 2009

Sun Mon Tue Wed Thu Fri Sat
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  

Twitter Updates

    follow me on Twitter



    « Creating an AutoCAD table containing block images using .NET | Main | Creating a table of block attributes in AutoCAD using .NET - Part 1 »

    June 11, 2007

    Embedding fields in an AutoCAD table using .NET

    This post is in response to a few requests I've received to show how to embed fields in tables. It follows on from this previous post, where we looked at how to embed a block preview icon in a table. The technique I'm showing in this post is far from being specific to tables, however. You could very easily use it for any other text object that supports fields inside AutoCAD (MText, Text, Attributes, etc.)

    Fields are very cool objects: they allow you to access a very wide array of information and embed them inside textual objects in AutoCAD. A field is an object, but can be defined by a text string containing angled-brackets etc. that AutoCAD interprets and regenerates at different times during execution (on regen, on drawing load etc. - check out the FIELDEVAL system variable for more details on that). The simplest way to create field objects in your applications is simply to embed a correctly formatted string: all being well, AutoCAD will understand it to represent a field and will create the corresponding object behind the scenes. Easy! :-)

    To understand in detail how the field mechanism works, I'd suggest checking out the TextFileField sample on the ObjectARX SDK. This is a C++ sample I created back when fields were first introduced (2005, if I recall correctly), to show how to implement your own custom field. This particular one links to a text file and embeds the file's contents in the container object.

    There are various standard fields available inside AutoCAD. You can access document-level information (such as the author of the drawing) or system-level information (such as the current date). To get started with fields, I recommend using the FIELD command to bring up the field-definition dialog (also accessible from the MTEXT toolbar, among other places). This dialog allows you to configure the vast majority of fields, including formatting codes, which are not explicitly documented.

    Fields_1

    Of the various standard fields that come with AutoCAD, the one I find most appealing - as a programmer - is the AcObjProp field, which provides the ability to access COM properties from a field object. This is really very cool - you basically pass in the object ID of the object you'd like to access, and the COM Automation property you'd like to read, and the field does the rest. This opens up enormous possibilities, as it ultimately allows you access to *any* object property, assuming it's exposed through COM (and developers often expose their custom objects via COM as it allows integration with the Property Palette and the ability to manipulate these objects via VBA).

    Let's look at the string we'd like to add to our code. The plan is to add a column to our table that includes a boolean (Yes/No) indicating whether the block definition is dynamic, or not.

    Here's an example of a string we can embed directly in the table cell to do this:

    %<\AcObjProp Object(%<\_ObjId 2130399456>%).IsDynamicBlock>%

    Breaking it down:

    • The first and last two characters tell AutoCAD the extents of the field definition
    • The AcObjProp string tells AutoCAD we're dealing with an object property
    • The Object string tells AutoCAD we're about to refer to an object
    • The _ObjId field points to an object by it's internal Object ID
    • The property we want to access is IsDynamicBlock

    Object IDs are only valid for a particular session, so this number can never be hard-coded. AutoCAD is clever enough to remap these throughout the drawing whenever it is loaded, however, which allows you to reopen drawings and the properties still to be accessible by fields.

    If you were to see this field embedded in a text object, it would display a grey box containing either "0" or "1", the results of calling the IsDynamicBlock property for a particular block definition (which is what needs to be pointed at by that particular Object ID, by the way). This isn't ideal, as we'd like to use a text string. You can apply formatting codes to the results of the AcObjProp field, by specifying /f. The specific codes - as mentioned previously - are not documented, but the FIELD command allows you to find out what they should be. The trick is to find a property that is of the same datatype as yours, and copy the formatting code.

    For instance, I used the MText.BackgroundFill property (also a Boolean) to help me work out that the formatting code I need for my property is "%bl2". Here's the FIELD dialog showing me this information:

    Fields_2

    So I now know that we want to add the following string (with the Object ID changed appropriately) for each of our blocks:

    %<\AcObjProp Object(%<\_ObjId 2130399456>%).IsDynamicBlock \f "%bl2">%

    Alright, we're finally ready for some code... :-)

    Here's the updated C# code. I haven't numbered the lines, this time, as that makes me lose a few valuable columns of width, but the changed code should be easy enough to identify - it's simply adding an additional column to our previous table (although I did put some lines in to add some column headings):

    using Autodesk.AutoCAD.ApplicationServices;

    using Autodesk.AutoCAD.DatabaseServices;

    using Autodesk.AutoCAD.EditorInput;

    using Autodesk.AutoCAD.Geometry;

    using Autodesk.AutoCAD.Runtime;


    namespace TableCreation

    {

      public class Commands

      {

        [CommandMethod("CRT")]

        static public void CreateTable()

        {

          Document doc =

            Application.DocumentManager.MdiActiveDocument;

          Database db = doc.Database;

          Editor ed = doc.Editor;


          PromptPointResult pr =

            ed.GetPoint("\nEnter table insertion point: ");

          if (pr.Status == PromptStatus.OK)

          {

            Transaction tr =

              doc.TransactionManager.StartTransaction();

            using (tr)

            {

              BlockTable bt =

                (BlockTable)tr.GetObject(

                  doc.Database.BlockTableId,

                  OpenMode.ForRead

                );


              Table tb = new Table();

              tb.TableStyle = db.Tablestyle;

              tb.NumRows = 5;

              // Added an additional column for the block image

              // and one for the "is dynamic" flag

              tb.NumColumns = 5;

              tb.SetRowHeight(3);

              tb.SetColumnWidth(15);

              tb.Position = pr.Value;


              // Create a 2-dimensional array

              // of our table contents

              string[,] str = new string[5, 4];

              str[0, 0] = "Part No.";

              str[0, 1] = "Name ";

              str[0, 2] = "Material ";

              str[1, 0] = "1876-1";

              str[1, 1] = "Flange";

              str[1, 2] = "Perspex";

              str[2, 0] = "0985-4";

              str[2, 1] = "Bolt";

              str[2, 2] = "Steel";

              str[3, 0] = "3476-K";

              str[3, 1] = "Tile";

              str[3, 2] = "Ceramic";

              str[4, 0] = "8734-3";

              str[4, 1] = "Kean";

              str[4, 2] = "Mostly water";


              // Use a nested loop to add and format each cell

              for (int i = 0; i < 5; i++)

              {

                for (int j = 0; j < 3; j++)

                {

                  tb.SetTextHeight(i, j, 1);

                  tb.SetTextString(i, j, str[i, j]);

                  tb.SetAlignment(i, j, CellAlignment.MiddleCenter);

                }

                // Adding title information for additional columns

                if (i == 0)

                {

                  tb.SetTextHeight(i, 3, 1);

                  tb.SetTextString(i, 3, "Block Preview");

                  tb.SetAlignment(i, 3, CellAlignment.MiddleCenter);


                  tb.SetTextHeight(i, 4, 1);

                  tb.SetTextString(i, 4, "Is Dynamic?");

                  tb.SetAlignment(i, 4, CellAlignment.MiddleCenter);

                }

                // If a block definition exists for a block of our

                // "name" field, then let's set it in the 4th column

                if (bt.Has(str[i, 1]))

                {

                  ObjectId objId = bt[str[i, 1]];

                  tb.SetBlockTableRecordId(i, 3, objId, true);


                  // And then we use a field to check on whether

                  // it's a dynamic block or not

                  string strObjId = objId.ToString();

                  strObjId = strObjId.Trim(new char[] {'(',')'});

                  tb.SetTextHeight(i, 4, 1);

                  tb.SetTextString(

                    i,

                    4,

                    "%<\\AcObjProp Object(%<\\_ObjId "

                      + strObjId

                      +">%).IsDynamicBlock \\f \"%bl2\">%"

                  );

                  tb.SetAlignment(i, 4, CellAlignment.MiddleCenter);

                }

              }

              tb.GenerateLayout();


              BlockTableRecord btr =

                (BlockTableRecord)tr.GetObject(

                  bt[BlockTableRecord.ModelSpace],

                  OpenMode.ForWrite

                );

              btr.AppendEntity(tb);

              tr.AddNewlyCreatedDBObject(tb, true);

              tr.Commit();

            }

          }

        }

      }

    }

    And here are the results of running the CRT command, assuming the KEAN block is the only dynamic one of the four:

    Fields_3

    TrackBack

    TrackBack URL for this entry:
    http://www.typepad.com/services/trackback/6a00d83452464869e200df352393a18834

    Listed below are links to weblogs that reference Embedding fields in an AutoCAD table using .NET:

    Comments

    Quando falei, manipulação de campo, seria criar e atribuir um valor para o mesmo. Exemplo:
    campo nome - Formato
    campo valor - A1
    campo nome - Titulo
    campo valor - Pipeline of GASCAV
    e depois sim, fazer a inserção em uma tabela.

    "When I spoke, manipulation of field, would be to create and to attribute a value for the same.
    e.g.
    field name - Format
    field value - A1
    field name - Titulo
    field value - Pipeline of GASCAV
    e later yes, to make the insertion in a table."

    Fields get information - they do not set it. So you would need to make sure your Format (i.e. PaperSize) and Title properties for the document were correct, and then you could use the following strings to embed the fields appropriately (you can find these via the FIELD command, as mentioned in this article):

    %<\AcVar PaperSize>%
    %<\AcVar Title>%

    Kean

    Hi Kean,
    thank you again for your code. At the moment I'm trying to insert a block with attributes into a drawing. With AttributeReference.HasFields I know if the attributereference has fields or not. It would be great if you could show us how to get the field-text of an attributereference.

    Regards
    Roland

    Por coincidência eu coloquei campos que existem no cad, mais e se for campos criados?
    Ou se for de um bloco com atributo que eu insiro número?
    Como fazer a soma dos mesmos atributos de vários blocos?

    " For coincidence I more placed fields that exist in cad, and he will be fields bred? Or one will be of a block with attribute that I insert number?
    How to make the addition of the same attributes of some blocks?"

    Kélcyo,

    I don't know whether it's the automatic translation, but I have trouble understanding what you need. I think it might be related to custom fields (in which case, see the TextFileField ObjectARX SDK sample).

    Regards,

    Kean

    I will try to translate what Kélcyo said!
    "Por coincidência eu coloquei campos que existem no cad, mais e se for campos criados?
    Ou se for de um bloco com atributo que eu insiro número?
    Como fazer a soma dos mesmos atributos de vários blocos?"

    "For coincidence I have placed fields that exist in cad, but if more fields are created?
    Or, if it is from a block with an attribute in witch I insert a number?
    And how can I make the sum of the same attributes in the several blocks?"

    Regards
    Pedro Ferreira

    Thanks, Pedro.

    The item regarding addition of numeric attributes from different blocks is an interesting one - I'll try to take a look at that when we come to cover field/table formulae. Thanks!

    Kean

    Hi Kean!

    Great blog - thank you!
    My question is - how do i read back the field code with c# (from an attribute e.g.)?

    I am linking room-label blocks with polylines, using fields inside an attribute to display the polyline's area property.

    Later I want to find out programatically, which polyline a certain block is linked to by evaluating the field in the attribute (extracting the objectId).

    Regards,
    Wolfgang Ruthensteiner

    Hi Wolfgang,

    Thanks for the feedback!

    And this is such a good question that I decided to make a post out of it.

    Enjoy. :-)

    Kean

    Hi,
    My name is Scott,
    Can I use Fields in Titleblocks for the diplaying the filename and not show some text? I use this formula (%<\AcVar Filename \f "%tc1%fn2">%) to show the sheet number to be the filename but not show the "PATH" or "EXTENSION" but in our office we have to name the files with codes in front to not conflict with other files. For example:
    the file name will be "WH-E.1"
    and only need to show on the sheet as "E.1"
    Please Help
    Thank you very much,

    Scott

    Hi Scott,

    Sorry - I don't know of a way to present substrings using fields. Someone on the discussion groups (http://discussion.autodesk.com) may have a suggestion.

    Regards,

    Kean

    Why does autocad 2009LT not export the content of a field when doing upload user changes to source file (dat link to excel)???

    Etienne - this is the wrong forum for the question. I don't use AutoCAD LT, as I focus on development and customization.

    Please use the discussion groups.

    Kean

    This is probably not the correct place to post this but here goes. I have a project that I created a ton of custom properties for and I would like to export them so I can use them in different project without having to manually recreate them. Is there a way to export custom properties from one project to another?

    I'm afraid it's not clear what you mean by either project or custom properties (both are highly overloaded terms).

    And this isn't really the right place - I suggest posting a more complete quest ion to one of our online discussion groups.

    Kean

    Verify your Comment

    Previewing your Comment

    This is only a preview. Your comment has not yet been posted.

    Working...
    Your comment could not be posted. Error type:
    Your comment has been posted. Post another comment

    The letters and numbers you entered did not match the image. Please try again.

    As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.

    Having trouble reading this image? View an alternate.

    Working...

    Post a comment

    Feed & Share

    Search