Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / MarqueeFocusIndicatorRenderer Class / Color Property
Example


In This Topic
    Color Property (MarqueeFocusIndicatorRenderer)
    In This Topic
    Gets or sets the color.
    Syntax
    'Declaration
     
    Public Property Color As Color
    'Usage
     
    Dim instance As MarqueeFocusIndicatorRenderer
    Dim value As Color
     
    instance.Color = value
     
    value = instance.Color
    public Color Color {get; set;}

    Property Value

    Color object containing the color
    Example
    This example uses the Color property.
    FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer mfr = new FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer();
    mfr.Color = Color.Crimson;
    mfr.Thickness = 2;
    mfr.Position = 1;
    fpSpread1.FocusRenderer = mfr;
    Dim mfr As New FarPoint.Win.Spread.MarqueeFocusIndicatorRenderer()
    mfr.Color = Color.Crimson
    mfr.Thickness = 2
    mfr.Position = 1
    fpSpread1.FocusRenderer = mfr
    See Also