Interaction.IIf Method
Returns one of two objects, depending on the evaluation of an expression.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Parameters
- Expression
- Type: System.Boolean
Required. Boolean. The expression you want to evaluate.
- TruePart
- Type: System.Object
Required. Object. Returned if Expression evaluates to True.
- FalsePart
- Type: System.Object
Required. Object. Returned if Expression evaluates to False.
Return Value
Type: System.ObjectReturns one of two objects, depending on the evaluation of an expression.
The IIf function provides a counterpart for the ternary Conditional Operator: ? : in Visual C++.
This example uses the IIf function to evaluate the testMe parameter of the checkIt procedure and returns the word "Large" if the amount is greater than 1000; otherwise, it returns the word "Small".
Function checkIt(ByVal testMe As Integer) As String Return CStr(IIf(testMe > 1000, "Large", "Small")) End Function
Note that if Option Strict is On, you must use the CStr keyword to explicitly convert the return from Object to String.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.