Assigns the specified bitwise ViewFlags enumeration to the specified flag value.
Assembly: System.Design (in System.Design.dll)
Protected Sub SetViewFlags ( _
viewFlags As [%$TOPIC/07kdyydd_en-us_VS_110_2_0_0_0_0%], _
setFlag As [%$TOPIC/07kdyydd_en-us_VS_110_2_0_0_0_1%] _
)
protected void SetViewFlags(
[%$TOPIC/07kdyydd_en-us_VS_110_2_0_1_0_0%] viewFlags,
[%$TOPIC/07kdyydd_en-us_VS_110_2_0_1_0_1%] setFlag
)
protected:
void SetViewFlags(
[%$TOPIC/07kdyydd_en-us_VS_110_2_0_2_0_0%] viewFlags,
[%$TOPIC/07kdyydd_en-us_VS_110_2_0_2_0_1%] setFlag
)
member SetViewFlags :
viewFlags:[%$TOPIC/07kdyydd_en-us_VS_110_2_0_3_0_0%] *
setFlag:[%$TOPIC/07kdyydd_en-us_VS_110_2_0_3_0_1%] -> unit
Parameters
- viewFlags
- Type:
System.Web.UI.DesignViewFlags
A ViewFlags value.
- setFlag
- Type:
SystemBoolean
true to set the flag, false to remove the flag.
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.
The following code example shows how to use the SetViewFlags method to indicate that the template is in editing mode.
Public Overrides Sub Initialize(ByVal Component As IComponent)
' Initialize the base
MyBase.Initialize(Component)
' Turn on template editing
SetViewFlags(ViewFlags.TemplateEditing, True)
End Sub
public override void Initialize(IComponent component)
{
// Initialize the base
base.Initialize(component);
// Turn on template editing
SetViewFlags(ViewFlags.TemplateEditing, true);
}
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.