SalQuickTabsParent
Namespace: PPJ.Runtime.Windows.QO
Assembly: PPJ.Web.49 (4.9.0.0)
Defines late bound functions in QuickTabs parent Form or Dialog Box that will be called when an event occurs in the tab control.
- C#
- VB.NET
public class SalQuickTabsParent : SalFormWindow
Public Class SalQuickTabsParent
Inherits SalFormWindow
Constructors
SalQuickTabsParent()
Methods
FromHandle(hWnd)
Returns the control associated with the handle.
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle |
Returns: SalQuickTabsParent.
TabActivateFinish(hWnd, nTab)
Indicates that a tab has been activated. This function is called after the child windows have been shown
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle | |
| nTab | SalNumber |
Returns: SalBoolean.
TabActivateStart(hWnd, nTab)
Indicates that a tab has been activated. This function is called before the child windows have been shown
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle | |
| nTab | SalNumber |
Returns: SalBoolean.
TabCreate(hWnd)
Indicates that a tab has been created. This function is called when the tab control receives SAM_Create.
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle |
Returns: SalBoolean.
TabFrameResize(hWnd)
Indicates that the size of the tab frame may have changed
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle |
Returns: SalBoolean.
TabSetFormPageSize(hWnd)
Define the page size for child forms created on the tab frame. This function can be overridden in the tab form or tab dialog box
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle |
Returns: SalBoolean.
TabUserRequest(hWnd, nTab)
Indicates that user is attempting to change the current tab by clicking, tabbing or some other user action. NOTE: Call CancelMode() to deny the user's request
| Parameter | Type | Description |
|---|---|---|
| hWnd | SalWindowHandle | |
| nTab | SalNumber |
Returns: SalBoolean.
Inherited By
| Name | Description |
|---|---|
| SalQuickTabsDialog | Dialog Box window parent of a tab frame. This class allows editing of the properties of child windows identifying their associated tab. |
| SalQuickTabsForm | Form window with a tab frame. In addition to containing a built in tab frame. This class also has the smarts to manage other child windows on the form so that they can be associated with specific tabs. |
| SalQuickTabsParentDialog | Specializes the generic SalQuickTabsParent class into a dialog box implementation. This class should be used when the ported code extends cQuickTabsParent directly. Using this class avoids the creation of multiple inheritance constructs. |
| SalQuickTabsParentForm | Specializes the generic SalQuickTabsParent class into a form implementation. This class should be used when the ported code extends cQuickTabsParent directly. Using this class avoids the creation of multiple inheritance constructs. |
Implements
| Name | Description |
|---|---|
| ISalWindow | All Sal windows (Child windows, Forms, Dialogs and MDIs) implement this interface. |