CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE

CAD tip CAD tip # 10114:

Question

CAD 
 %  platform  category 
A
Using the following variants of iLogic code you can return different values for the "True" and "False" conditions in your macros - i.e. if a given condtion is met or not met:

'Input data

Dim msg as String = ""

Dim condition As Boolean = True

'Variant #1

If condition Then

msg = "Truth"

Else

msg = "Lie"

End If

MsgBox(msg)

'Variant #2

msg = If(condition, "Truth", "Lie")

MsgBox(msg)

'Variant #3

MsgBox(If(condition, "Truth", "Lie"))

Inventor
100% *CAD
27.11.2014   11483×  
   
this tip shared by ARKANCE experts applies to: Inventor ·

See also:
Tip 14975:iLogic Codeblocks - visual programming in Inventor 2027
Tip 14641:Automatic naming of Inventor drawing sheets according to the first model (iLogic).
Tip 14359:Automatic macro execution when opening a CAD file (AutoCAD, Inventor, Max, PowerMill)
Tip 13884:How to send e-mails with an iLogic macro?
Tip 13852:How to bulk-update all model parameters?


Back    All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD: 
OS: 
Categ: 
Text:
 FAQ
  





Please use these tips at your own risk.
ARKANCE is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist