WebPartDisplayMode(String) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a value for the name of the display mode.
protected:
WebPartDisplayMode(System::String ^ name);
protected WebPartDisplayMode (string name);
new System.Web.UI.WebControls.WebParts.WebPartDisplayMode : string -> System.Web.UI.WebControls.WebParts.WebPartDisplayMode
Protected Sub New (name As String)
Parameters
- name
- String
The name of the display mode.
Exceptions
The name
parameter is null
.
Remarks
A WebPartDisplayMode object is never created because the class is abstract. At run time, the WebPartManager control uses the WebPartDisplayMode class as the base class to create objects for each of the various page display modes.
Notes to Inheritors
If you derive from the WebPartDisplayMode class to create a custom display mode, in your class declaration you must call the base constructor and pass to it a string containing the name of the custom display mode.