C# Class AspNetEdit.Editor.UI.RootDesignerView.GeckoFunctions

Exibir arquivo Open project: mono/aspeditor

Public Properties

Property Type Description
AddControl string
DoCommand string
GetPage string
InsertFragment string
LoadPage string
RemoveControl string
SelectControl string
UpdateControl string

Property Details

AddControl public_oe static_oe property

Add a control to the document Args: string id: the unique ID of the control. string content: The HTML content of the control Returns: none
public static string AddControl
return string

DoCommand public_oe static_oe property

Passes a simple command to Gecko Args: string command: Use the enum EditorCommand Returns: none
public static string DoCommand
return string

GetPage public_oe static_oe property

Replaces the currently loaded document Args: none Returns: none
public static string GetPage
return string

InsertFragment public_oe static_oe property

Inserts a document fragment. Host should have deserialised it. Args: string fragment: The document fragment Returns: none
public static string InsertFragment
return string

LoadPage public_oe static_oe property

Replaces the currently loaded document Args: string document: the document text, with placeholder'd controls. Returns: none
public static string LoadPage
return string

RemoveControl public_oe static_oe property

Removes a control from the document Args: string id: the unique ID of the control. Returns: none
public static string RemoveControl
return string

SelectControl public_oe static_oe property

Selects a control Args: string id: the unique ID of the control, or empty to clear selection. Returns: none
public static string SelectControl
return string

UpdateControl public_oe static_oe property

Updates the design-time HTML of a control to the document Args: string id: the unique ID of the control. string content: The HTML content of the control Returns: none
public static string UpdateControl
return string