Import Text file into catia V5R - drafting
Import Text file into catia V5R - drafting
(OP)
is there a way to import a text file into catia V5R9. I like to edit my notes in a text file and import them into catia.
Thanks
Thanks
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
Import Text file into catia V5R - drafting
|
RE: Import Text file into catia V5R - drafting
Or Insert your text file as an OLE object with or wothout a link (Insert + Object).
Kev
RE: Import Text file into catia V5R - drafting
o Sub ActivateFrame( CatTextFrameType iType)
Activates the text frame of the drawing text.
Parameters:
iType
The text frame type
Example:
This example add a rectangle frame to MyText drawing text.
CatTextFrameType itype = catRectangle
MyText.ActivateFrame itype
Example:
This example remove the frame to MyText drawing text.
CatTextFrameType itype = catNone
MyText.ActivateFrame itype
But I cannot get the sytax correct or something because the frame never activates
RE: Import Text file into catia V5R - drafting
here is a sample how to use text frame:
Set tText = ThisDrawingTexts.Add(sStamp, 545, 125)
tText.Name = "Stamp"
dAngle = 50#
tText.Angle = dAngle
tText.SetFontSize 0, 0, 5#
tText.SetFontName 0, 0, "Arial"
tText.ActivateFrame catOblong
regards TPale