The INI file has one section used for INI settings. This section
includes general window attributes. The INI file also includes a
variable number of Field sections which are used to create the controls to be
displayed.
Any time when is mentioned "Default is" means that you can use the value
mentioned or keep it blank, the result is the same.
Each field section has the heading "Field #" where # must be
sequential numbers starting at 1. Each Field section can
contain the following values:
| Type |
|
Type of control to be created. Valid values
are: |
|
Label |
Used to display static text (i.e. a caption for a text box). |
|
Text |
Accepts text input from the user. |
|
Password |
Accepts password input from the user.
The input is masked with * characters. |
|
IPAddress |
Displays an edit box used for IP address input. |
|
HotKey |
Displays an edit box used to get keyboard input. |
|
UpDown |
Displays a pair of arrow buttons
that the user can click to increment or decrement a number in a Text or
ComboBox buddy controls, to change the selection upwards or downwards
of a ListBox control, or to be used alone (without the user knowing what
number he/she selected). See Text, State and Left Right Top
Bottom commands for more information on how to use it on the specified
situations. |
|
Combobox |
Allows the user to type text not in the pop up
list. |
|
DropList |
Only allows selection of items in the
list. |
|
Listbox |
Shows multiple items and can optionally allow
the user to select more than one item. |
|
CheckBox |
Displays a check box with label. |
|
RadioButton |
Displays a radio button with label. |
|
FileRequest DirRequest |
Use Text and Button
controls to make one that fits your style. |
|
Icon |
Displays an icon. Use no "Text" to use the
installer icon. |
|
Bitmap |
Displays a bitmap. |
|
Animation |
Displays an AVI video. Has to be
without sound. |
|
ProgressBar |
Displays a bar that shows progress. |
|
TrackBar |
Displays a bar where the user can select with
the slider one of the options indicated by ticks. It doesn't include labels. |
|
DateTime |
Displays a combobox where the user can pick or select a
date or time he/she wants.
Minimum OS: Win 95 w/ IE 3.0, Win NT 4.0 w/ IE 3.0. |
|
MonthCalendar |
Displays a month calendar where the user can select
a date he/she wants.
Minimum OS: Win 95 w/ IE 3.0, Win NT 4.0 w/ IE 3.0. |
|
GroupBox |
Displays a frame to group
controls. |
|
Link |
Displays a static hot text. State value
name determines if ShellExecute should be used instead of the validation
function return from a notification to run programs, open folders or URLs
(e.g. http://...). See Notify value name below for more information on
notifications. |
|
Button |
Displays a push button that can be used
in the same way as the "Link" control above. |
| |
| Text |
|
Generally specifies control caption, but this can
depend on the control type: |
|
Text Password |
(Input) Specifies the password mask character. The control state
is imediately hidden by the character specified. |
|
UpDown |
(Input) Specifies the buddy control field number (where the UpDown
attaches itself into another). Recommended types of buddy controls are: Text, ComboBox and
ListBox. If you don't want to have a buddy control, you have to leave this as blank. |
|
Label Checkbox RadioButton |
(Input) Specifies the control caption.
Note: For Label controls, \r\n will be converted to a
newline. To use a back-slash in your text you have to escape it
using another back-slash - \\. Described below. |
|
Icon |
(Input) Specifies the path to a icon file (.ico), an
executable (.exe) or a plugin (.dll). For executables and plugins, see
State INI value for more information. |
|
Bitmap Animation |
(Input) Specifies the path to a file for its type. |
|
ComboBox DropList |
(Input) Specifies the bitmap file to load
containing a slot for each item in the list specified by "ListItems". Each bitmap
slot (for each list item) is 16x16 pixels long, with transparent color set to
#FF00FF (format #RRGGBB). Limit of 256 bitmap slots for now. The slots have to be
ordered as the list items. |
|
DateTime |
(Input) Specifies the format to show
State. Default is the date format specified by the user
in the Regional and Language Options from Control Panel.
The format basic explanation can be found there. |
|
Button |
(Input) Specifies control's text. If ICON or
BITMAP flags are associated with a button control, this specifies the path
where the icon or bitmap is. |
| |
| State |
|
Specifies the state of the control. This is
updated when the user closes the window, so you can read from it
from NSIS. The input/output depends on the control type: |
|
Edit Password IPAddress |
(Input/Output) String to appear (or last appeared). |
|
HotKey |
(Input/Output) String to appear (or last appeared).
Each key has to start with each word first letter capitalized, except stand alone
keys which have to be in lower case (like Ctrl + Alt + Shift + c). Each
combination has to be separated by " + ", so the key "+" is not supported yet. |
|
UpDown |
(Input/Output) Specify the number
of the option selected. NOTE: If a UpDown control
has its buddy control a Text control, it will replace its
state for UpDown's. |
|
RadioButton |
(Input/Output) '0' or '1' (for unchecked or checked). |
|
CheckBox |
(Input/Output) '0' or '1' (for unchecked or checked).
When the flag 3STATE is used, '2' is the indetermined (grayed) state
of the control. |
|
Icon |
(Input) Specifies the icon index number for
an executable or a dll if the Text INI value is used. 0 or an empty
value means that the first icon inside the file will be used.
If Text INI value is not used, this specifies what Windows default
icon will be used. See the list below:
| Value
|
Meaning
|
| APPLICATION |
Show the default icon for a DOS application without a
customized icon on explorer. |
| EXCLAMATION |
Show the default icon for a warning: An exclamation
mark inside a yellow triangle. |
| INFORMATION |
Show the default icon for information: An exclamation
mark inside a white balloon. |
| QUESTION |
Show the default icon for a question: A question mark
inside a white balloon. |
| STOP |
Show the default icon for an error or unauthorized
access: A white "X" inside a red circle. |
| WINLOGO |
Show the default icon for an application without a
customized icon on explorer.
Windows XP: Same as APPLICATION. |
|
|
ListBox |
(Input/Output) Selected items separated by pipes ('|'). |
|
ComboBox DropList |
(Input/Output) Selected item name. |
|
ProgressBar |
(Input/Output) Specify at what point
the progress is. Maximum limit is 100 when MaxLen
is not specified. |
|
TrackBar |
(Input/Output) Specify the number
of the option selected. |
|
DateTime |
(Input/Output) Specify the date and
time to show. Has to be based on this format:
d/m/yyyy h:m:s w (w = day of the week
as a number -> Sunday = 0, Monday = 1...)
The separators can be:
"/", "\", "-", ":" or " ".
If you don't want to specify all those numbers, you can just keep it empty,
i.e.:
27//2003
Only will be used the day and the year.
|
|
Link |
(Input) Specify something to be executed or opened
(like "Exec" command from NSIS). |
|
Button |
(Input) Specify something to be executed or opened
(like "Exec" command from NSIS). If you specify FILEREQUEST or
DIRREQUEST flags this specify to what control field number the result value
will be returned. Recommended controls are: Text and ComboBox controls. |
| |
| ListItems |
|
(Input) A list of items to display in a "ComboBox",
"DropList" or "Listbox".
This is a single line of text with each item separated by a pipe
character '|' |
|
Button |
(Input) When "DIRREQUEST" flag is used, this specifies
the text above the TreeView control of directories on "Browse For Folder"
dialog. |
| |
| MaxLen |
|
(Input) Causes validation on the selected control to
limit the maximum length of text (or options).
If the user specifies more text than this, a message box will
appear when they click "OK" and the dialog will not be
dismissed. |
|
Text |
(Input) If the control has FILEREQUEST or DIRREQUEST
flags, this should be set to 260.
|
|
ComboBox |
(Input) You should not use this with
this control since the user can not control what is selected. |
|
Animation |
(Input) Is the ending frame of the animation. -1 is the last frame animation. |
|
ProgressBar TrackBar |
(Input) This limits the number of maximum
progress/options.
|
| |
| MinLen |
|
(Input) Causes validation on the selected control to
force the user to enter a minimum amount of text.
If the user specifies less text than this, a message box will
appear when they click "OK" and the dialog will not be
dismissed. |
|
ComboBox |
(Input) If you set this to "1" the
program will force the user to select an item.
|
|
Animation |
(Input) Is the starting frame of the animation. 0 is the first frame. |
|
ProgressBar |
(Input) Is the value when the progress
starts. If State is lower than this value, the progress
won't show up. |
|
TrackBar |
(Input) Is the starting option number. |
| |
| ValidateText |
|
(Input) If the field fails the test for
"MinLen" or "MaxLen", a messagebox will be
displayed with this text.
Note: \r\n will be converted to a newline. To use a back-slash
in your text you have to escape it using another back-slash - \\.
Described below. |
| |
Left
Right
Top
Bottom
Width
Height |
|
(Input) The position on the dialog where this
control appears. Width and/or Height can be specified instead of Right and/or
Bottom. All sizes should be set in dialog units. To get
the right dimensions for your controls, design your dialog using a
resource editor and copy the dimensions to the INI file. If the control size
is bigger than the rectangle size, the plugin will automatically make it smaller
so it appears correctly on the screen.
Note: You can specify negative coordinates to
specify the distance from the right or bottom edge. This doesn't work for
Width and Height. |
|
ComboBox DropList |
(Input) The Bottom value is not used
in the same way. In this case, the bottom value is the maximum size
of the window when the pop-up list is being displayed. All other times,
the combobox is automatically sized to be one element tall. If you have
trouble where you can not see the combobox drop-down, then check
the bottom value and ensure it is large enough. A rough guide for
the height required is the number of items in the list multiplied
by 8, plus 20. |
|
ProgressBar |
(Input) When using XPStyle on, the minimum
height (or width if using VERTICAL flag) has to be above 5 dialog units
or the ProgressBar will not be redrawn right. |
|
MonthCalendar |
(Input) Recommended size: 131x95. |
| |
| Filter |
|
(Input) Specifies the filter to be used in the
Button or Link controls that use FILEREQUEST flag.
This is constructed by putting pairs of entries together, each item
separated by a | character.
The first value in each pair is the text to display for the
filter.
The second value is the pattern to use to match files.
For example, you might specify:
Filter=Text Files|*.txt|Programs|*.exe;*.com|All Files|*.*
If not specified, then the filter defaults to All Files|*.*
Note: you should not put any extra spaces around
the | characters. |
| |
| Root |
|
(Input) Used by Button or Link controls
that use DIRREQUEST flag to specify the root
directory of the search. By default, this allows the user to browse
any directory on the computer. This will limit the search to a
particular directory on the system. |
| |
| Flags |
|
(Input) This specifies additional flags for the
display of different controls. Each value should be separated by a
| character, and you should be careful not to put any spaces around
the | character.
|
|
All Controls |
| NOTIFY |
Removed. See Notify value name below. |
| DISABLED |
Causes a control to be disabled.
Doesn't affect Bitmap, Icon and
Animation controls. |
| GROUP |
Add this flag to the first control of a
group of controls to group them. Grouping controls allows you to
create multiple groups of radio button and makes keyboard
navigation using arrow keys easier.
Doesn't affect Label, Bitmap, Icon,
Animation and ProgressBar controls. |
| NOTABSTOP |
Do not stop on the control when the user
pressed the Tab key. Add NOTABSTOP to all controls of a group
except the first one to allow navigation between groups with the
Tab key.
Doesn't affect Label, Bitmap, Icon,
Animation and ProgressBar controls. |
|
|
Text Password |
| ONLY_NUMBERS |
Forces the user to enter only numbers into
the edit box. Doesn't allow negative numbers to be entered. Text
can still be pasted normally. |
| MULTILINE |
Causes the control to accept multiple-lines. |
| WANTRETURN |
Specifies that a carriage return be inserted when
the user presses the ENTER key while entering text into the text
box.
MULTILINE flag required. |
| NOWORDWRAP |
Disables the word-wrap that occurs
when long lines are entered. Long lines instead scroll off to
the side.
MULTILINE flag required.
HSCROLL flag disables this flag. |
| HSCROLL |
Show a horizontal scroll bar. |
| VSCROLL |
Show a vertical scroll bar. |
| READONLY |
Prevents the user from entering
or editing text in the edit control, but allow the user to
select and copy the text. |
| PASSWORD |
Same as using the control
Password.
Doesn't affect Password controls. |
|
|
UpDown |
| LEFT |
Makes the control to position to the left of its buddy
control.
State INI value required.
|
| HSCROLL |
Used by UpDown controls. Makes the arrows of
the control to point left and right instead of up and down.
|
| WRAP |
Used by UpDown controls. Makes the position
to "wrap" if it is incremented or decremented beyond the ending or beginning of
the range.
|
|
|
ComboBox |
| DROPLIST |
Same as using the control DropList.
|
|
|
ListBox |
| MULTISELECT |
Used by ListBox controls. Turns
string selection on or off each time the user clicks or
double-clicks a string in the list box. The user can select any
number of strings. |
| EXTENDEDSELECT |
Used by ListBox controls. Allows
multiple items to be selected by using the SHIFT key and the mouse
or special key combinations.
MULTISELECT flag disables this flag. |
| VSCROLL |
Shows a disabled vertical scroll bar when there
is no need for one. |
|
|
CheckBox RadioButton |
| RIGHT |
Realocates the control text to the
left of the selection box/circle. |
| 3STATE |
Makes the control to have an additional
"indetermined" state. This is generally used when some items are
selected from another controls, but not all of them. State can input
and output the number 2 as that state.
Doesn't affect RadioButton controls. |
|
|
Bitmap |
| RESIZETOFIT |
Resizes the image to the size of the
control. Also useful to support custom DPI settings. |
|
|
ProgressBar |
| SMOOTH |
Makes the progress bar smooth.
|
| VSCROLL |
Makes the progress bar to appear as a vertical progress
bar with the indicator bar starting from bottom. |
|
|
TrackBar |
| TOOLTIPS |
Makes the control show tooltips when
the user changes the slider position. |
| NO_TICKS |
Makes the control to don't show ticks
on the control which mark the options. |
| VSCROLL |
Makes the control to be vertically orientated. |
|
|
DateTime |
| UPDOWN |
Makes the control like UpDown
control, but using date and time. |
|
|
MonthCalendar |
| NOTODAY |
Makes the control to do not display the "today"
date at the bottom of the control and its red circle. Recommended control
height is 75.
|
| WEEKNUMBERS |
Makes the control to display week
numbers (1-52) to the left of each row of days. Week 1 is defined
as the first week that contains at least four days.
Recommended control width is 134.
|
|
|
Button |
| OPEN_FILEREQUEST |
Makes the control to display a common dialog
requiring a file for input to open. See State option
for more details on how to output it to another control. |
| SAVE_FILEREQUEST |
Makes the control to display a common dialog
requiring a file for input to save on. See State option
for more details on how to output it to another control. |
| DIRREQUEST |
Makes the control to display a common dialog
requiring a directory for input. See State option
for more details on how to output it to another control. |
| FILE_MUST_EXIST |
Determines if the selected file must exist.
FILEREQUEST flag required.
REQ_SAVE flag disables this flag.
Affects only FILEREQUEST dialog. |
| FILE_EXPLORER |
Enables new file request look
(recommended).
FILEREQUEST flag required. |
| FILE_HIDEREADONLY |
Hides the "open read only" check box.
FILEREQUEST flag required.
REQ_SAVE flag disables this flag. |
| WARN_IF_EXIST |
Displays a warning message if the selected file already exists.
FILEREQUEST flag required.
Affects only FILEREQUEST dialog. |
| PATH_MUST_EXIST |
Prevents the user from typing a non-existent path.
FILEREQUEST flag required.
Affects only FILEREQUEST dialog. |
| PROMPT_CREATE |
Displays a warning if the selected file does not exist.
However, it still allows the user to select the file.
FILEREQUEST flag required.
REQ_SAVE flag disables this flag.
Affects only FILEREQUEST dialog. |
| BITMAP |
Makes the control to show a bitmap instead of text.
ICON flag disables this flag.
|
| ICON |
Makes the control to show an icon instead of text.
|
|
| |
| Notify |
|
(Input) Used by all controls except
GroupBox controls. Causes InstallOptionsEx
to call your NSIS custom page validation/leave function whenever the
control's selection changes.
Your validation/leave function can read the
State value accompanied with Notify value from the
Settings section to determine which control caused the
notification resp. what notification did it receive of those you chose
in the control section Notify value, if any, and perform some
appropriate action followed by an Abort instruction (to tell NSIS to return
to the page).
Each notification flag should be separated with a | character, and you should
be careful not to put any spaces around the | character.
| Value |
Meaning |
| ONSETFOCUS |
Used by Text, Password, IPAddress,
ListBox, ComboBox, DropList, RadioButton,
CheckBox, Button and Link controls. Notifies when a
control gained focus. |
| ONKILLFOCUS |
Used by Text, Password, IPAddress,
ListBox, ComboBox, DropList, RadioButton,
CheckBox, Button and Link controls. Notifies when a
control lost focus. |
| ONLISTOPEN |
Used by ComboBox, DropList and
DateTime controls. Notifies when a control received a click on
the arrow on the right of the control (or left if its in RTL mode). |
| ONLISTCLOSE |
Used by ComboBox, DropList and
DateTime controls. Notifies when the user clicked outside of
listbox(ComboBox, DropList) or monthcalendar
(DateTime) which are inside these controls. |
| ONSELCHANGE |
Used by IPAddress, ComboBox,
DropList, ListBox, DateTime, MonthCalendar
and UpDown controls. Notifies when the user changed control state. |
| ONTEXTCHANGE |
Used by Text, Password,
IPAddress and ComboBox controls. Notifies when the user
changed control state of the text (for example, when writing) before it
appears on screen. |
| ONTEXTUPDATE |
Used by Text, Password,
IPAddress and ComboBox controls. Notifies when the user
changed control state of the text (for example, when writing) after it
appears on screen. |
| ONTEXTVSCROLL |
Used by Text, Password controls.
Notifies when the user clicked on the vertical scroll bar or when the user
scrolls the mouse wheel over it. |
| ONTEXTTRUNCATE |
Used by Text and Password,
controls. Notifies when the user tried to enter more characters than the limit.
ValidateText does the same thing, except that now you can use the
validation function for that. |
| ONCLICK |
Used by Label, Image,
RadioButton, CheckBox, Button and Link
controls. Notifies when the user clicked on the control. |
| ONDBLCLICK |
Used by Label, Image, ComboBox,
DropList, ListBox, RadioButton, CheckBox,
Button and Link controls. Notifies when the user double-clicked
on the control or on one item of ListBox, ComboBox
or DropList. |
| ONSTART |
Used by Animation control. Notifies when the
control started playing an animation. An exception is when it starts for the
first time. Not tested. |
| ONSTOP |
Used by Animation control. Notifies when the
control stopped playing an animation. |
|
| |
| TxtColor |
Label Link Text |
(input) Specifies the foreground color of the text.
Format: 0xBBRRGG (hexadecimal). |
|
ListBox DropList |
(input) Specifies the foreground color of the text when an
item is not selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the foreground color of the text when an
item is not selected and when not using the images feature. This is not drawn on
the Text box part of ComboBox. Format: 0xBBRRGG (hexadecimal). |
|
ProgressBar |
(input) Specifies the color of the indicator bar.
This only is used when not using Windows themes. Format: 0xBBRRGG (hexadecimal). |
|
MonthCalendar DateTime |
(input) Specifies the foreground color of the normal days
text in the controls' calendar. Format: 0xBBRRGG (hexadecimal). |
| |
| BgColor |
Label Link Text |
(input) Specifies the background color of the control.
Format: 0xBBRRGG (hexadecimal). |
|
ListBox DropList |
(input) Specifies the background color of the text when an
item is not selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the background color of the text when an
item is not selected and when not using the images feature. This is not drawn on
the Text box part of ComboBox. Format: 0xBBRRGG (hexadecimal). |
|
ProgressBar |
(input) Specifies the color of the background part of the bar.
This only is used when not using Windows themes. Format: 0xBBRRGG (hexadecimal). |
|
MonthCalendar DateTime |
(input) Specifies the background color of the month calendar.
Format: 0xBBRRGG (hexadecimal). |
| |
| SelTxtColor |
ListBox DropList |
(input) Specifies the foreground color of the text when an
item is selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the foreground color of the text when an
item is selected and when not using the images feature. This is not drawn on
the Text box part of ComboBox. Format: 0xBBRRGG (hexadecimal). |
|
MonthCalendar DateTime |
(input) Specifies the foreground color of the month calendar
selected text and title text. Format: 0xBBRRGG (hexadecimal). |
| |
| SelBgColor |
ListBox DropList |
(input) Specifies the background color of the text when an
item is selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the background color of the text when an
item is selected and when not using the images feature. This is not drawn on
the Text box part of ComboBox. Format: 0xBBRRGG (hexadecimal). |
|
MonthCalendar DateTime |
(input) Specifies the background color of the month calendar
selected text and title text. Format: 0xBBRRGG (hexadecimal). |
| |
| DisTxtColor |
Label Link |
(input) Specifies the foreground color of the text when the
control is disabled. Format: 0xBBRRGG (hexadecimal). |
|
ListBox |
(input) Specifies the foreground color of the text when an
item is not selected and the control is disabled. Format: 0xBBRRGG (hexadecimal). |
| |
| DisBgColor |
Label Link |
(input) Specifies the background color of the text when the
control is disabled. Format: 0xBBRRGG (hexadecimal). |
|
ListBox |
(input) Specifies the background color of the text when an
item is not selected and the control is disabled. Format: 0xBBRRGG (hexadecimal). |
| |
| DisSelTxtColor |
ListBox |
(input) Specifies the foreground color of the text when an
item is selected and the control is disabled. Format: 0xBBRRGG (hexadecimal). |
| |
| DisSelBgColor |
ListBox |
(input) Specifies the background color of the text when an
item is selected and the control is disabled. Format: 0xBBRRGG (hexadecimal). |
| |
| MonthOutColor |
MonthCalendar |
(input) Specifies the background color of the outside part of
the month calendar. This is only used when you specify a bigger control size
than the recommended one. Format: 0xBBRRGG (hexadecimal). |
| |
| MonthTrailingTxtColor |
MonthCalendar DateTime |
(input) Specifies the foreground text color of the days from
the last or next month being shown. Format: 0xBBRRGG (hexadecimal). |
| |
| TxtShwColor |
Label Link |
(input) Specifies the foreground text color of the
shadow. Format: 0xBBRRGG (hexadecimal). |
|
DropList ListBox |
(input) Specifies the foreground text color of the
shadow when an item is not selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the foreground text color of the
shadow when an item is not selected and when not using the images feature.
This is not drawn on the Text box part of ComboBox. Format: 0xBBRRGG
(hexadecimal). |
| |
| SelTxtShwColor |
DropList ListBox |
(input) Specifies the foreground text color of the
shadow when an item is selected. Format: 0xBBRRGG (hexadecimal). |
|
ComboBox |
(input) Specifies the foreground text color of the
shadow when an item is selected and when not using the images feature.
This is not drawn on the Text box part of ComboBox. Format: 0xBBRRGG
(hexadecimal). |
| |
DisTxtShwColor |
Label Link |
(input) Specifies the foreground text color of the
shadow when the control is disabled. Format: 0xBBRRGG (hexadecimal). |
|
ListBox |
(input) Specifies the foreground text color of the
shadow when an item is not selected and when the control is disabled. Format:
0xBBRRGG (hexadecimal). |
| |
| DisSelTxtShwColor |
ListBox |
(input) Specifies the foreground text color of the
shadow when an item is selected and when the control is disabled. Format:
0xBBRRGG (hexadecimal). |
| |
| FontName |
All Controls |
(input) Sets the control font. It has to be a font name
<= 32 characters. |
|
ListBox ComboBox DropList |
(input) Sets the control font. It has to be a font name
<= 32 characters. If the text cuts off, you can adjust the parameter ListItemsHeight.
|
| |
| FontHeight |
All Controls |
(input) Sets the control font height in points. |
|
ListBox ComboBox DropList |
(input) Sets the control font height in points. If the text cuts off,
you can adjust the parameter ListItemsHeight. |
| |
| FontWidth |
All Controls |
(input) Sets the control font average character width in pixels. |
| |
| ListItemsHeight |
ListBox ComboBox DropList |
(input) Specifies the height of each item contained into the control in pixels. |
| |
| FontBold |
All Controls |
(input) If set to 1, this makes the text to become bold.
Default is 0. |
| |
| FontItalic |
All Controls |
(input) If set to 1, this makes the text to become italic.
Default is 0. |
| |
| FontUnderline |
All Controls |
(input) If set to 1, this makes the text to have an underline.
Default is 0 except for Link controls, which is 1. |
| |
| FontStrikeOut |
All Controls |
(input) If set to 1, this makes the text to have a strike out.
Default is 0. |
| |
| ToolTipText |
|
(input) Determines the text of a control tooltip.
It is required to make show a tooltip for any control.
|
| |
| ToolTipFlags |
|
(input) This specifies additional flags specially
for a control tooltip.
Each tooltip flag should be separated with a | character, and you should
be careful not to put any spaces around the | character.
| Value |
Meaning |
| NOALWAYSTIP |
Makes the tooltip to do not show up when the window
doesn't have focus. |
| BALLOON |
Requires Internet Explorer 5
Makes the tooltip to look like a balloon with a steam pointing to the control.
Enables the use of ToolTipTitle and ToolTipIcon. |
| NOANIMATE |
Requires Internet Explorer 5
Removes the tooltip sliding animation. |
| NOFADE |
Requires Internet Explorer 5
Removes the tooltip fade animation. |
| NOPREFIX |
Prevents the system from stripping the ampersand
(&) character from a string. |
|
| |
| ToolTipMaxWidth |
|
(input) Determines the maximum width of the tooltip.
If the text passes from this limit it is automatically broken into multiple lines.
This limit can be surpassed if a word is bigger than the maximum width indicated here. Default
is 300 pixels.
|
| |
| ToolTipTxtColor |
|
(input) Specifies the foreground color of the tooltip
text and the tooltip border. Format: 0xBBRRGG (hexadecimal).
|
| |
| ToolTipBgColor |
|
(input) Specifies the background color of the tooltip
text. Format: 0xBBRRGG (hexadecimal).
|
| |
| ToolTipIcon |
|
(input) Specifies the icon of a control tooltip
that has the BALLOON flag. The value can be one of the following:
INFO - Display with information icon
WARNING - Display with exclamation icon
ERROR - Display with stop icon
|
| |
| ToolTipTitle |
|
(input) Specifies the title text of a tooltip
with BALLOON flag. It appears as bold above the normal tooltip text.
|