Skip to main content

TabPane

Represents a pane of either TabControl or Accordion

Constructors

new TabPane()

new TabPane(dart): TabPane

Creates TabPane from the Dart handle

Parameters

ParameterType
dartany

Returns

TabPane

Source

src/widgets.ts:643

Properties

PropertyType
dartany

Accessors

content

get content(): HTMLDivElement

Content

Returns

HTMLDivElement

Source

src/widgets.ts:658


expanded

get expanded(): boolean

Whether the pane is expanded. Applicable to Accordion's panes only.

set expanded(v): void

Parameters

ParameterType
vboolean

Returns

boolean

Source

src/widgets.ts:663


get header(): HTMLDivElement

A control shown on top of the pane

Returns

HTMLDivElement

Source

src/widgets.ts:653


name

get name(): string

Tab pane name

set name(name): void

Parameters

ParameterType
namestring

Returns

string

Source

src/widgets.ts:667


parent

get parent(): TabControl

TabControl this pane belongs to

Returns

TabControl

Source

src/widgets.ts:648