iLogic Autodesk Inventor
iLogic Inventor . . iLogic Visual Basic, , , , .
, iLogic . i . , , , ., i.
Inventor 2018 iLogic . , , . iLogic Inventor:- /
, .
, ILogic Inventor, [isicad.ru: . ].iLogic?
: Getting started with iLogiciLogic , , . , , , . :
iLogic ( , iLogic)
. , / iLogic .
, , .
'Start of iLogic code
MessageBox.Show(iProperties.Mass, "Mass of Model in Kilograms")
'End of iLogic Code
(. ):
MessageBox.Show(iProperties.Volume, "Volume of Model centimetere Cubed")
MessageBox.Show(iProperties.Area, "Area in centimeters squared")
!
Inventor 2018 iLogic
: Enhancements to forms in Inventor 2018
Inventor 2018 iLogic . . , , , , GIF .
, : , [isicad.ru: . ]
iLogic Inventor 2017:
: Inventor 2017 - iLogic Tip: Icons for External Rules
iLogic, . .
Inventor, PNG- 1616 , , . PNG- , , 3D PDF 3D PDF.txt 3D PDF.png.
PNG- , Inventor: ( ).
PNG-, Paint ( , ) Resize . , .
Inventor 2018 - iLogic
: Inventor 2018 - iLogic to Show Mesh and Surface Data on Drawings.
, Inventor. , .
, iLogic .
. iLogic .
: "IncludeMeshBodies" "includeSurfaceBodies" = False, :
'Code by @ClintCadline - originally posted here: https://www.cadlinecommunity.co.uk/hc/en-us/articles/115005749125
Dim oView As DrawingView = Nothing
Dim oDrawingViews As DrawingViews = ThisApplication.ActiveDocument.Sheets.Item(1).DrawingViews
' Iterate through drawing views
For i = 1 To oDrawingViews.Count
oView = oDrawingViews.Item(i)
xView = oView.Name
ActiveSheet.View(xView).View.IncludeMeshBodies = True
ActiveSheet.View(xView).View.IncludeSurfaceBodies = True
Next