05-16-2021
10:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-16-2021
10:48 AM
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
Or if this helped you, please, click (like)
Regards
Alan