Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CATIA MACRO: HOW TO SET TEXT FRAME AS OBLONG STYLE

Status
Not open for further replies.

xluo3562

Electrical
Apr 6, 2017
6
0
0
HK
Hello guys,
I want to set frame for text in drawing, such as oblong style---which means you will have a oblong frame around the text.
You can do that manually by selecting the property menu.
But is there a way to do this by macro?

Thanks in advance.

Louis
 
Replies continue below

Recommended for you

Hi

Searching V5automation.chm

CatTextFrameType (Enumeration)
enum CatTextFrameType {
catNone,
catRectangle,
catSquare,
catCircle,
catScoredCircle,
catDiamond,
catTriangle,
catRightFlag,
catLeftFlag,
catBothFlag,
catOblong,
catEllipse,
catCustom
}

Drawing text frame types.

Values:
catNone
No frame is drawn
catRectangle
The frame is a rectangle
catSquare
The frame is a square
catCircle
The frame is a circle
catScoredCircle
The frame is a scored circle
catDiamond
The frame is a diamond
catTriangle
The frame is a triangle
catRightFlag
The frame is a right flag
catLeftFlag
The frame is a left flag
catBothFlag
The frame is a left flag and a right flag
catOblong
The frame is oblong
catEllipse
The frame is an ellipse
catCustom
The frame is customized


Regards
Fernando

- Romania
- EU
 
Status
Not open for further replies.
Back
Top