CATIA V5 Macro Text Properties
CATIA V5 Macro Text Properties
(OP)
Hi,
I'm trying to make a Macro for Drawing Title Block.
I can't applied the following proprieties to my new text (will be the drawing number):
Flip Mode (Horizontal);
Orientation (Vertical).
For the Flip Mode I've tried with this input in the Script:
Dim Tex1Prop As Drawing TextProperties
Set Tex1Prop = MySheetNum.TextProperties
Tex1Prop.Mirroring = catTexHorizontalFlip
But it doen't work..
For text Orientation I have no ideas..
Someone could kindly help me?
thanks a lot..
I'm trying to make a Macro for Drawing Title Block.
I can't applied the following proprieties to my new text (will be the drawing number):
Flip Mode (Horizontal);
Orientation (Vertical).
For the Flip Mode I've tried with this input in the Script:
Dim Tex1Prop As Drawing TextProperties
Set Tex1Prop = MySheetNum.TextProperties
Tex1Prop.Mirroring = catTexHorizontalFlip
But it doen't work..
For text Orientation I have no ideas..
Someone could kindly help me?
thanks a lot..





RE: CATIA V5 Macro Text Properties
The line of code below works for me:
CODE --> catvba
Drew Mumaw
www.textsketcher.com
www.drewmumaw.com
RE: CATIA V5 Macro Text Properties
Do you know the right input for text orientation?
RE: CATIA V5 Macro Text Properties
CODE --> catscript
RE: CATIA V5 Macro Text Properties
CODE --> catvba
Drew Mumaw
www.textsketcher.com
www.drewmumaw.com
RE: CATIA V5 Macro Text Properties