ControlDesigner.SetViewFlags(ViewFlags, Boolean) Method
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.
Assigns the specified bitwise ViewFlags enumeration to the specified flag value.
protected:
void SetViewFlags(System::Web::UI::Design::ViewFlags viewFlags, bool setFlag);
protected void SetViewFlags (System.Web.UI.Design.ViewFlags viewFlags, bool setFlag);
member this.SetViewFlags : System.Web.UI.Design.ViewFlags * bool -> unit
Protected Sub SetViewFlags (viewFlags As ViewFlags, setFlag As Boolean)
Parameters
- setFlag
- Boolean
true
to set the flag, false
to remove the flag.
Examples
The following code example shows how to use the SetViewFlags method to indicate that the template is in editing mode.
public override void Initialize(IComponent component)
{
// Initialize the base
base.Initialize(component);
// Turn on template editing
SetViewFlags(ViewFlags.TemplateEditing, true);
}
Public Overrides Sub Initialize(ByVal Component As IComponent)
' Initialize the base
MyBase.Initialize(Component)
' Turn on template editing
SetViewFlags(ViewFlags.TemplateEditing, True)
End Sub
Remarks
There are several flags that can be set. For example, use the SetViewFlags method to set the DesignTimeHtmlRequiresLoadComplete value of the current ViewControl property for the control designer, instead of the obsolete DesignTimeHtmlRequiresLoadComplete property.