Spread WPF Documentation
SelectionBorderColor Property
Example 


Gets or sets a Color object for the selection style.
Syntax
'Declaration
 
Public Property SelectionBorderColor As System.Nullable(Of Color)
'Usage
 
Dim instance As Worksheet
Dim value As System.Nullable(Of Color)
 
instance.SelectionBorderColor = value
 
value = instance.SelectionBorderColor
public System.Nullable<Color> SelectionBorderColor {get; set;}

Property Value

The Color object for this sheet.
Example
This example uses the SelectionBorderColor property.
gcSpreadSheet1.Sheets[0].SelectionBackground = new SolidColorBrush(Colors.DarkMagenta);
gcSpreadSheet1.Sheets[0].SelectionBorderColor = Color.FromArgb(150, 10, 100, 99);
gcSpreadSheet1.Invalidate();
GcSpreadSheet1.Sheets(0).SelectionBackground = New SolidColorBrush(Colors.DarkMagenta)
GcSpreadSheet1.Sheets(0).SelectionBorderColor = Color.FromArgb(150, 10, 100, 99)
GcSpreadSheet1.Invalidate()
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.