Acad 2005 Table Header Column and Title Properties?

Discussion in 'AutoCAD' started by cadmaxza, Jul 13, 2004.

  1. cadmaxza

    cadmaxza Guest

    Greetings Gang,

    I have been able to make a table, included Data and Header values (using row 0 for the row position in the settext method). But I cannot set the height of the Header row and I cannot add a Title.

    The settextheight refers to rowtypes, this appears to be a bit-type identity of the rows to set, am I correct? What are the available row types?

    The example uses 3 (e.g. customObj.SetTextHeight 3, 1.3).

    TIA,

    Kevin.
     
    cadmaxza, Jul 13, 2004
    #1
  2. The rowtypes parameter of the SetTextHeight method accepts a combination of
    the AcRowType enum

    To set the text height of the Header row only, call
    customObj.SetTextHeight AcRowType.acHeaderRow , 1.3

    To set the text height of all the rows call
    customObj.SetTextHeight AcRowType.acHeaderRow + AcRowType.acTitleRow
    +AcRowType.acDataRow , 1.3

    row 0 for the row position in the settext method). But I cannot set the
    height of the Header row and I cannot add a Title.
    identity of the rows to set, am I correct? What are the available row types?
     
    Ravi Pothineni, Jul 13, 2004
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.