Msg
The Msg object represents a script dialog input event message. It’s returned by the Dialog.GetMsg method which you call when running the message loop for a detached dialog.
<default value>
bool
Returns True if the message is valid, or False if the dialog has been closed (which means you should exit your message loop).
buttons
string
Returns a string indicating which mouse button was pressed when the message was generated. Possible values are left, right and middle.
checked
int
If the event type is checked, this indicates the check state of the item. If checkboxes are used in automatic mode, this will be the new check state of the item. In manual mode, this will indicate the existing state and it's up to you to change the state if desired.
Check states are:
string
For a timer event this returns the name of the timer that was triggered.
For a hotkey event this returns the name of the hotkey.
For a drop event this returns the name of the control that the files were dropped on.
For a custom message, this provides the name of the message.
0
unchecked
1
checked
2
indeterminate
3
unchecked/disabled
4
checked/disabled
5
indeterminate/disabled
control
cx
int
For resize events, this property returns the new width of the dialog.
cy
int
For resize events, this property returns the new height of the dialog.
data
int or// bool//
If the event type is focus, indicates the new focus state of the control - True if the control has gained the focus, or False if it's lost it.
For a combo box or list box control: If the event type is selchange or dblclk, returns the data value associated with the selected item.
For a two-state check box control or radio button: If the event type is click, returns a bool indicating the current check state.
For a three-state check box: If the event type is click, returns an int representing the current state.
If the event type is timer, this value indicates the number of milliseconds that have elapsed since the last time this timer was triggered.
If the event type is tab, and the value property is set to filechange, this indicates which file change events occurred in the monitored tab. 1 = add, 2 = delete, 4 = change. The values will be added together (so e.g. 6 indicates at least one item was changed and at least one was deleted).
For a http event, this value contains the event status code. The value property provides the same information as a keyword.
For a color event from a palette control, this will be 0
for an intermediate color change (e.g. the user has the palette open and is clicking around within it) and 1 for final changes (when the palette window closes).
dialog
string
Returns the name of the parent dialog.
event
string
Returns a string indicating the event that occurred. Currently defined events are:
bool
Returns True if the control had focus when the message was generated.
invalid
The dialog has been closed
checked
For a listview control with the Checkboxes property enabled, indicates that the checkbox of a list item has been clicked.
click
The control was clicked (e.g. a button, check box, radio button, markup text or static control with Notify Clicks property enabled).
close
dblclk
An item in the list was double-clicked (list box, combo box or list view) or the control was double-clicked (static control with *Notify Clicks *property enabled).
dirchange
drag
drop
Files were dropped onto your dialog. The dialog template must have its Accept Drops property set to True to enable drag & drop support.
editchange
The contents of an edit field were modified. For a list view this event indicates that the label of a list item was edited.
focus
The control gained or lost focus.
hotkey
http
resize
rclick
An item in the list was right-clicked (list box, list view) or the control was right-clicked (static control with *Notify Clicks *property enabled, or button control with the Right Button property enabled).
selchange
The selection was changed (list box, combo box, list view or tab).
timer
tab
color
A new color has been chosen in a palette control.
clipboard
custom
A custom message sent from another script. The message name can be found in the name property.
focus
index
int
Returns the current selection index for a combo box, list box or tab control.
mousex
int
Returns the horizontal position of the mouse cursor when the message was generated.
mousey
int
Returns the vertical position of the mouse cursor when the message was generated.
name
string
An alias for the control property.
object
variant
qualifiers
string
Returns a string indicating the qualifier keys (if any) that were held down when the message was generated.
The string can contain any or all of the following: shift, ctrl, alt, lwin, rwin
If no qualifiers were down, the string will be: none
result
bool
Returns True if the message is valid, or False if the dialog has been closed.
tab
string
For a dialog tab control, returns the name of the parent tab (if the control is on a dialog that's inside a tab control).
value
string
For the dblclk, editchange and selchange events, returns the current contents of the edit field (or selected item label).
For the tab event, indicates which event occurred in the monitored tab. Possible values are select, navigate, filechange, activate, srcdst, view, flat, and close (sent if the tab is closed while you are monitoring it).
For the drag event, this indicates which button is being used to drag (left or right).
For a click event from a markup text control, this indicates the ID of the clicked link.
For a http event, this indicates the current http status code.
For a color event from a palette control, this will be the selected color as either a hex or decimal string (depending on the control property). If the palette button's checkbox is disabled, this will be prefixed by a !
character.
最后更新于