Interface: GenericTabbedContentProps
Component props for GenericTabbedContent.
Hierarchy
↳
GenericTabbedContentProps
Properties
children
• Optional
children: DisplayChildren
[]
The children of the display component.
Inherited from
Defined in
src/sdk/components/FSComponent.ts:122
isEnabled
• Optional
isEnabled: boolean
| Subscribable
<boolean
>
Whether the tab is enabled. Defaults to true
.
Inherited from
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/TabbedContent.ts:14
isVisible
• Optional
isVisible: boolean
| Subscribable
<boolean
>
Whether the tab is visible in the tab list. Defaults to true
.
Inherited from
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/TabbedContent.ts:17
onAfterRender
• Optional
onAfterRender: (thisNode
: VNode
, members
: GenericTabbedContentMembers
) => void
A function which is called after the content is rendered.
Type declaration
▸ (thisNode
, members
): void
A function which is called after the content is rendered.
Parameters
Name | Type |
---|---|
thisNode | VNode |
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:21
onClose
• Optional
onClose: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is closed. Content is closed when it is deselected or its parent container is closed.
Type declaration
▸ (members
): void
A function which is called when the content is closed. Content is closed when it is deselected or its parent container is closed.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:39
onDeselect
• Optional
onDeselect: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is deselected.
Type declaration
▸ (members
): void
A function which is called when the content is deselected.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:27
onDestroy
• Optional
onDestroy: () => void
A function which is called when the content is destroyed.
Type declaration
▸ (): void
A function which is called when the content is destroyed.
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:66
onOpen
• Optional
onOpen: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is opened. Content is opened when it is selected and its parent container is open.
Type declaration
▸ (members
): void
A function which is called when the content is opened. Content is opened when it is selected and its parent container is open.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:33
onPause
• Optional
onPause: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is paused. Content is paused when it is deselected or its parent container is paused.
Type declaration
▸ (members
): void
A function which is called when the content is paused. Content is paused when it is deselected or its parent container is paused.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:51
onResume
• Optional
onResume: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is resumed. Content is resumed when it is selected and its parent container is resumed.
Type declaration
▸ (members
): void
A function which is called when the content is resumed. Content is resumed when it is selected and its parent container is resumed.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:45
onSelect
• Optional
onSelect: (members
: GenericTabbedContentMembers
) => void
A function which is called when the content is selected to be displayed in its parent container.
Type declaration
▸ (members
): void
A function which is called when the content is selected to be displayed in its parent container.
Parameters
Name | Type |
---|---|
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:24
onUiInteractionEvent
• Optional
onUiInteractionEvent: (event
: UiInteractionEvent
, members
: GenericTabbedContentMembers
) => boolean
A function which handles UI interaction events routed to the content. If not defined, then the content will not handle any events.
Type declaration
▸ (event
, members
): boolean
A function which handles UI interaction events routed to the content. If not defined, then the content will not handle any events.
Parameters
Name | Type |
---|---|
event | UiInteractionEvent |
members | GenericTabbedContentMembers |
Returns
boolean
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:63
onUpdate
• Optional
onUpdate: (time
: number
, members
: GenericTabbedContentMembers
) => void
A function which is called when the content is updated. Content is updated when it is selected and its parent container is updated.
Type declaration
▸ (time
, members
): void
A function which is called when the content is updated. Content is updated when it is selected and its parent container is updated.
Parameters
Name | Type |
---|---|
time | number |
members | GenericTabbedContentMembers |
Returns
void
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/GenericTabbedContent.tsx:57
ref
• Optional
ref: NodeReference
<any
>
A reference to the display component.
Inherited from
Defined in
src/sdk/components/FSComponent.ts:125
tabLabel
• tabLabel: string
| Subscribable
<string
> | () => VNode
The label to display for the tab.
Inherited from
Defined in
src/workingtitle-instruments-g3x-touch/html_ui/Pages/VCockpit/Instruments/NavSystems/G3XTouch/Shared/Components/TabbedContainer/TabbedContent.ts:11