ControlDesigner.SetViewFlags(ViewFlags, Boolean) Method

Definition

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

viewFlags
ViewFlags

A ViewFlags value.

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.

Applies to

See also