CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 18324

CAD tip CAD tip # 10114:

   
Question CAD 
 %  platform  category 
Q - question

iLogic tip: returning a value on the True and False conditions.

A - answer 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    9012×  
Prices - CAD eShop:
applies to: Inventor ·

See also:
Tip 13884:How to send e-mails with an iLogic macro?
Tip 13852:How to bulk-update all model parameters?
Tip 13744:Simple password protection of Inventor documents (iLogic).
Tip 13611:BOM with multi-line items in Inventor.
Tip 13536:iLogic: How to find if a document is a sheet metal part and if it contains holes?


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 glossary   



Featuring:
DwgTextTranslator translates a series of drawings from one language to another using MS Access.
Download a fully functional trial version.


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