Gets or sets whether the element is allowed to paint.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Property Redraw As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ElementWindowless
Dim value As Boolean
instance.Redraw = value
value = instance.Redraw |
C# | |
---|
public virtual bool Redraw {get; set;} |
Property Value
Boolean value:
true to redraw;
false otherwise
Remarks
Example
csharp | Copy Code |
---|
private void button1_Click(object sender, System.EventArgs e)
{
element.Redraw = true;
} |
Visual Basic | Copy Code |
---|
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
element.Redraw = True
End Sub |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also