Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Chart Namespace / ChartShape Class / Redraw Property
Example


In This Topic
    Redraw Property (ChartShape)
    In This Topic
    Gets or sets whether the element is allowed to paint.
    Syntax
    'Declaration
     
    
    Public Overrides Property Redraw As Boolean
    'Usage
     
    
    Dim instance As ChartShape
    Dim value As Boolean
     
    instance.Redraw = value
     
    value = instance.Redraw
    public override bool Redraw {get; set;}
    Example
    private void button1_Click(object sender, System.EventArgs e)
    {
    element.Redraw = true;
    }
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    element.Redraw = True
    End Sub
    See Also