<if_clp> Clipboard-related condition.


Command Tree:   Macro Flow Control    \  If-Else  \  If Clipboard
.
Syntax:   <if_clp>("Condition", "Reserved")
Condition
Condition can be one from  the following:

"EMPTY" - the <if_clp> statement is true if the clipboard is empty.
"SET" - the <if_clp> statement is true if the clipboard contains some data.
Reserved
Must be empty string.
.
.
Example:   <#> This macro shows how to use if-clp condition
<#>
<commands_only_on>

<if_clp>("EMPTY","")
  
<msg>(100,100,"Clipboard is empty.","Message",1)
<else>
   <varset>("vEmpty=YES/NO","Clipboard is not empty. Do you want to empty it ?")
   <if>("vEmpty==YES")
      <clpempty>
   <endif>
<endif>