English
bizApi.fullScreen
About 86 wordsLess than 1 minute
2026-07-20
Synchronous method
Sets or toggles the full-screen state of the detail page.
Signature
context.bizApi.fullScreen(status)Parameters
| Parameter | Description | Type | Required | Default |
|---|---|---|---|---|
| status | true enters full screen, false exits full screen, and omission toggles the current state | Boolean | No | -- |
Return Value
void. This method only updates the full-screen state and does not return the updated state.
Basic Example
context.bizApi.fullScreen(true); // Enter full screen.
context.bizApi.fullScreen(false); // Exit full screen.
context.bizApi.fullScreen(); // Toggle the current state.