Skip to main content

ASPxClientHtmlEditorInsertFlashCommandArguments.enableFlashMenu Property

Determines if the flash related items are displayed in the context menu of the target flash element.

Declaration

enableFlashMenu: boolean

Property Value

Type Description
boolean

true, if the specific context menu items are displayed; 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