Welcome
Scintilla.GetEventString
Scintilla.GetTabCount
Scintilla.DeleteTab
Scintilla.GetActiveTab
Scintilla.SetActiveTab
Scintilla.AddTab
Scintilla.SendMessage
Scintilla.ProcessNotification
|
(string) Scintilla.GetEventString ( |
(string) ObjectName, (number) TabID ) |
Gets the event string from memory ( This action for retrieving "text" index of "e_Notify" table in On Notify event)
(string) The name of the object.
(number) The ID of the tab you want to get event string
This action returns a (string) value.
|
(number) Scintilla.GetTabCount ( |
(string) ObjectName ) |
Gets the number of tabs that are in the stack
(string) The name of the object.
This action returns a (number) value.
|
(boolean) Scintilla.DeleteTab ( |
(string) ObjectName, (number) TabID ) |
Deletes a tab from stack , Note: this completely destroys the specified tab
(string) The name of the object.
(number) The ID of the tab you want to delete
This action returns a (boolean) value.
|
(number) Scintilla.GetActiveTab ( |
(string) ObjectName ) |
Gets the ID of currently visible tab , if there is no tab added yet , or if there is no active tab then the return value is -1
(string) The name of the object.
This action returns a (number) value.
|
(boolean) Scintilla.SetActiveTab ( |
(string) ObjectName, (number) TabID ) |
Activates a tab
(string) The name of the object.
(number) The ID of the tab you want to activate (make it visible)
This action returns a (boolean) value.
|
(boolean) Scintilla.AddTab ( |
(string) ObjectName, (number) TabID ) |
Adds a new tab to a scintilla object ; This is a virtual tab simply it is a new instance of scintilla window in scintilla object
(string) The name of the object.
(number) The ID of the new tab, This must be minimum 100 or greater
This action returns a (boolean) value.
|
(string) Scintilla.SendMessage ( |
(string) ObjectName, (number) TabID, (string) ReturnType, (number) Message, (string) WParamType, (string) WParam, (string) LParamType, (string) LParam ) |
Sends a API message to a scintilla object.
(string) The name of the object.
(number) The ID of new tab you want to send message
(string) The type of expected return value.
(number) The message to be sent to a scintilla object.
(string) The type of WPARAM value.
(string) The WPARAM value of message.
(string) The type of LPARAM value.
(string) The LPARAM value of message.
This action returns a (string) value.
|
Scintilla.ProcessNotification ( |
(string) ObjectName, (number) TabID ) |
This action should be called when a notification message handled in On Notify event.
(string) The name of the object.
(number) The ID of the tab you want to apply this action to
This action dose not return any value.
Made with Action Plugin Compiler