Welcome
CheckList Action Plugin
1.0.0.0
Freeware
RizlaUK
CheckList.SetChecked
CheckList.GetChecked
CheckList.SetText
CheckList.GetText
CheckList.Init
CheckList.AddItem
CheckList.GetEnabled
CheckList.SetEnabled
CheckList.GetVisible
CheckList.SetVisible
CheckList.SetChecked ( | (number) ListItemID, (boolean) Checked ) |
Sets the checklist items checked state.
(number) The numeric ID of the checklist item.
(boolean) True if the item should be checked.
This action dose not return any value.
(boolean) CheckList.GetChecked ( | (number) ListItemID ) |
Gets the checklist items checked state.
(number) The numeric ID of the checklist item.
(boolean)
CheckList.SetText ( | (number) ListItemID, (string) Text ) |
Sets the checklist items text.
(number) The numeric ID of the checklist item.
(string) The new text for the item.
This action dose not return any value.
(string) CheckList.GetText ( | (number) ListItemID ) |
Gets the checklist items text.
(number) The numeric ID of the checklist item.
(string)
CheckList.Init ( | (number) HostHandle, (number) ListID, (number) BackColor = 16777215, (number) Border = 0 ) |
Creates the CheckList object
(number) The window handle of the host container (ListBox)
(number) This is the ID of the list, used later to perform actions on the list.
(number) The color of the list background.
(number) The list border type.
CONSTANT | VALUE | DESCRIPTION |
CL_BorderLess | 0 | Without any border (Default). |
CL_Flat | 1 | Flat frame. |
CL_Raised | 2 | Raised frame. |
CL_Single | 4 | Single sunken frame. |
CL_Double | 8 | Double sunken frame. |
This action dose not return any value.
CheckList.AddItem ( | (number) ListID, (number) ListItemID, (string) Text, (number) TextColor = 0, (number) Align = 0 ) |
Adds a checkbox item to the in memory checklist.
(number) This is the ID of the list, used later to perform actions on the list.
(number) The numeric ID of the checklist item.
Note: CheckList items always start from a index of 1 above the ListID, so a ListID of 100 will have items 101, 102, 103 etc)
(string) The text to be displayed next to the checkbox.
(number) The color of the checkbox text.
(number) Align the text for the checkbox.
CONSTANT | VALUE | DESCRIPTION |
CL_Right | 512 | Aligns the text To right. |
CL_Center | 768 | Centers the text to the center. |
This action dose not return any value.
(boolean) CheckList.GetEnabled ( | (number) ListItemID ) |
Gets the checklist items enabled state.
(number) The numeric ID of the checklist item.
(boolean)
CheckList.SetEnabled ( | (number) ListItemID, (boolean) Enabled ) |
Sets the checklist items enabled state.
(number) The numeric ID of the checklist item.
(boolean) True if the item should be enabled.
This action dose not return any value.
(boolean) CheckList.GetVisible ( | (number) ListItemID ) |
Gets the checklist items visible state.
(number) The numeric ID of the checklist item.
(boolean)
CheckList.SetVisible ( | (number) ListItemID, (boolean) Visible ) |
Sets the checklist items visible state.
(number) The numeric ID of the checklist item.
(boolean) True if the item should be made visible.
This action dose not return any value.
This File Was Generated With AMS ActionFile Editor