How to get chamfer note in drawing

How to get chamfer note in drawing

Lalchetaketan022
Contributor Contributor
317 Views
1 Reply
Message 1 of 2

How to get chamfer note in drawing

Lalchetaketan022
Contributor
Contributor

Hi

 

I do have a drawing and sheet objects. I want to access feature notes for chamfer created in drawing sheet. Can I access the same? If yes, any pointers plz on same will be much more helpful to me.

0 Likes
Accepted solutions (1)
318 Views
1 Reply
Reply (1)
Message 2 of 2

bradeneuropeArthur
Mentor
Mentor
Accepted solution
Dim a As Inventor.DrawingDocument = ThisDrawing.Document
Dim s As Inventor.Sheet = a.ActiveSheet
Dim n As Inventor.DrawingNote = s.DrawingNotes.Item(1)
MsgBox(n.FormattedText)
MsgBox (n.Text)

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes