Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
A.Acheson
in reply to: dimamazutaMMJ32

Are you looking to get all sheet sizes in a sheet collection and do the following:
 
  • show the size in the title block or in the drawing as text? 

  • Or do you want to put the sheet size into the sheet name? 

    Below is a simple loop through the sheets displaying sheet size.
oDrawDoc = ThisApplication.ActiveDocument
 
    For Each oSheet in oDrawDoc.Sheets 
oSheet.Activate
MessageBox.Show(ActiveSheet.Size, "Title")
Next
If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan