ASPxClientCommandConsts.FULLSCREEN_COMMAND Property
In This Article
Identifies a command that toggles the full-screen mode.
#Declaration
TypeScript
static FULLSCREEN_COMMAND: string
#Property Value
Type | Description |
---|---|
string | Value: “fullscreen” |
#Remarks
The FULLSCREEN_COMMAND property can be used in the following ways.
- In the ASPxClientHtmlEditor.CommandExecuted event — to determine the toolbar or ribbon item clicked by an end-user. If the ASPxClientHtmlEditorCommandEventArgs.commandName event parameter returns the FULLSCREEN_COMMAND property value, this means that either the ToolbarFullscreenButton toolbar item or the HEFullscreenRibbonCommand ribbon item (depending upon the toolbar mode used) has been manipulated by an end-user.
- In the ASPxClientHtmlEditor.ExecuteCommand method — to execute the command manually.
Note
This command is available in all view modes: Design View, HTML View and Preview Area.
See Also