Skip to main content

ASPxClientHtmlEditorInsertFlashCommandArguments.allowFullscreen Property

Determines if the target flash element can be displayed in the fullscreen mode.

Declaration

allowFullscreen: boolean

Property Value

Type Description
boolean

true, if the fullscreen mode is allowed; otherwise, false.

Remarks

// Inserting a new flash element at the current cursor position
var args = new ASPxClientHtmlEditorInsertFlashCommandArguments(htmlEditor);
args.allowFullscreen = false;
args.autoPlay = true;
args.enableFlashMenu = false;
args.loop = false;
args.quality = "best";
args.src = "/Content/SampleFlash.swf";
htmlEditor.ExecuteCommand(args.GetCommandName(), args);
See Also