Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

V5 Drawing custom sheet size 3

Status
Not open for further replies.

alexlaurenceau

Automotive
Joined
Nov 12, 2003
Messages
20
Location
CA
Hello everyone,
I would like to create a sheet of 36inx100in for our drawings. Does anybody know how to define custom sheet size in the drafting workbench? I tried running in admin mode and access the XML standards but I don't seem to find any parameter for the sheet size.

Thanks in advance.





Alex Laurenceau
 
Hi Alex,
One way is to use a macro..and..
..if you would try this link:
somewhere deep there you will find references to
"CatPaperSize" and
"CatPaperUser"
Good Luck,
Sincerely,
Mircea
 
Hello,
easy way to create user specific size for drawing is:
File/Page Setup
In Format field type User36x100 and press TAB-key
then Width and Height fields will activate.

Regards TPale
 
Hi Alex Laurenceau,we can set sheet height and width as Tpale said manually,and we can set itz format by macro also as Alex said:

macro is like this

Set DrawingDocument1 = CATIA.ActiveDocument

Set DrawingSheets1 = DrawingDocument1.Sheets

Set DrawingSheet1 = DrawingSheets1.Item("Sheet.1")

DrawingSheet1.PaperSize = CatPaperUser
DrawingSheet1.SetPaperHeight 800mm
DrawingSheet1.SetPaperWidth 1150mm

Hope it works for u

bye
Naveen
 
Thank you all for your quick response. All your tips where helpful and they worked for me.

Thanks again and have a good day!


Alex Laurenceau
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top