home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / autoit / autoit-v3-setup.exe / Include / Misc.au3 < prev    next >
Text File  |  2005-02-01  |  1KB  |  32 lines

  1. #include-once
  2.  
  3. ; ------------------------------------------------------------------------------
  4. ;
  5. ; AutoIt Version: 3.0
  6. ; Language:       English
  7. ; Description:    Functions that assist with Intenet.
  8. ;
  9. ; ------------------------------------------------------------------------------
  10.  
  11.  
  12. ;===============================================================================
  13. ;
  14. ; Function Name:    _Iif()
  15. ; Description:      Perform a boolean test within an expression.
  16. ; Parameter(s):     $f_Test     - Boolean test.
  17. ;                   $v_TrueVal  - Value to return if $f_Test is true.
  18. ;                   $v_FalseVal - Value to return if $f_Test is false.
  19. ; Requirement(s):   None.
  20. ; Return Value(s):  One of $v_TrueVal or $v_FalseVal.
  21. ; Author(s):        Dale (Klaatu) Thompson
  22. ;
  23. ;===============================================================================
  24. Func _Iif($f_Test, $v_TrueVal, $v_FalseVal)
  25.    If $f_Test Then
  26.       Return $v_TrueVal
  27.    Else
  28.       Return $v_FalseVal
  29.    EndIf
  30. EndFunc
  31.  
  32.