graziano-g
Guest
hi, it may happen to have the need to make a multifoil table, a component in order to indicate in sequence a series of works, or a set to provide detailed indications of a mounting sequence, without weighing down the drawing made in a single view.
the following macro allows, after producing the first table, its exact and complete duplication on which it is possible to act with all possible tools regardless of the source table and those generated.
Maybe someone can help.
Hello, good day to all.
sub duplicate_sheet()
dim odoc as drawingdocument
set odoc = thisapplication.activedocument
dim tmpdoc as drawingdocument
tmpdoc = thisapplication.documents.add (kdrawingdocumentobjecttrue)
dim newsheet as sheet
set newsheet = odoc.activesheet.copyto (tmpdoc)
call newsheet.copyto (odoc)
tmpdoc.close (true)
end
how to copy and paste a sheet into the same design as inventor | inventor 2019 | autodesk knowledge networkproblem: after copying a sheet in the notes, it is not possible to paste it into the same design. causes: inventor does not support the copy-paste operation of a sheet within a drawing
knowledge.autodesk.com
the following macro allows, after producing the first table, its exact and complete duplication on which it is possible to act with all possible tools regardless of the source table and those generated.
Maybe someone can help.
Hello, good day to all.
sub duplicate_sheet()
dim odoc as drawingdocument
set odoc = thisapplication.activedocument
dim tmpdoc as drawingdocument
tmpdoc = thisapplication.documents.add (kdrawingdocumentobjecttrue)
dim newsheet as sheet
set newsheet = odoc.activesheet.copyto (tmpdoc)
call newsheet.copyto (odoc)
tmpdoc.close (true)
end
how to copy and paste a sheet into the same design as inventor | inventor 2019 | autodesk knowledge networkproblem: after copying a sheet in the notes, it is not possible to paste it into the same design. causes: inventor does not support the copy-paste operation of a sheet within a drawing
