Author Topic: Insertion Point of a Table.  (Read 2826 times)

0 Members and 1 Guest are viewing this topic.

tjr

  • Guest
Insertion Point of a Table.
« on: January 03, 2008, 02:48:21 PM »
Anyhow have any pointers on changing the insertion point of a table from the default, which is upper left to upper right?

T.Willey

  • Needs a day job
  • Posts: 5251
Re: Insertion Point of a Table.
« Reply #1 on: January 03, 2008, 03:09:02 PM »
Look at the Position property.
Tim

I don't want to ' end-up ', I want to ' become '. - Me

Please think about donating if this post helped you.

tjr

  • Guest
Re: Insertion Point of a Table.
« Reply #2 on: January 03, 2008, 03:53:04 PM »
Look at the Position property.

Position is a Point3d. How would I go about using this to change the insertion point?

sinc

  • Guest
Re: Insertion Point of a Table.
« Reply #3 on: January 03, 2008, 04:19:50 PM »
The Position is the insertion point.  So changing it won't change the justification from the upper-left to the upper-right, it will move the entire table.

But you can change it like this:

Code: [Select]
table.Position = new Point3d(x,y,z);
As far as changing the justification, I'm not sure.  Tables are subclassed from Blocks, so you might be able to set an X-scale-factor of -1.  Or maybe that FlowDirection property might help.  Or maybe it's impossible, I don't know.