From WikiChip
Difference between revisions of "mirc/identifiers/$dqwindow"
< mirc‎ | identifiers

(Created page with "{{mirc title|$dqwindow Identifier}}'''$dqwindow''' returns the state of the single message window. When used in on TEXT/ACTION events, it also returns opening/writing/written...")
 
m
Line 3: Line 3:
 
The value can be checked using the & bit comparison operator:
 
The value can be checked using the & bit comparison operator:
  
* $iif$dqwindow & 1,enabled,not enabled)
+
* $iif($dqwindow & 1,enabled,not enabled)
 
* $iif($dqwindow & 2,open,not open)
 
* $iif($dqwindow & 2,open,not open)
 
* $iif($dqwindow & 4,opening,not opening)
 
* $iif($dqwindow & 4,opening,not opening)
Line 29: Line 29:
  
  
[[Category:mIRC identifiers|addtok]]
+
[[Category:mIRC identifiers|dqwindow]]

Revision as of 17:39, 20 September 2017

$dqwindow returns the state of the single message window. When used in on TEXT/ACTION events, it also returns opening/writing/written states.

The value can be checked using the & bit comparison operator:

  • $iif($dqwindow & 1,enabled,not enabled)
  • $iif($dqwindow & 2,open,not open)
  • $iif($dqwindow & 4,opening,not opening)
  • $iif($dqwindow & 8,writing,not writing)
  • $iif($dqwindow & 16,written,not written)


Synopsis

$dqwindow

Paramters

None

Properties

None

Example

None

Compatibility

Added: mIRC v7.48
Added on: 15 Apr 2017
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also

/dqwindow