Examples: IsDefined function
' Perform operation based on platform
If IsDefined ("WIN32") Then
< code >
End If
' Perform operation based on product
If Isdefined ("Notes_full_client") Then
< code >
End If
See the %If directive example for a more detailed sample.