FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : SelectionBackColor Property |
'Declaration Public Property SelectionBackColor As Color
'Usage Dim instance As SheetView Dim value As Color instance.SelectionBackColor = value value = instance.SelectionBackColor
public Color SelectionBackColor {get; set;}
The setting of this property is used for the background color of selections if the SelectionStyle property is set to SelectionStyles.SelectionColors or SelectionStyles.Both. This property has no effect if the SelectionStyle property is set to SelectionStyles.None or SelectionStyles.SelectionRenderer.
To set the selection text color, set the SelectionForeColor property.
For more information, see Customizing Selection Appearance.
fpSpread1.ActiveSheet.SelectionStyle = FarPoint.Win.Spread.SelectionStyles.SelectionColors; fpSpread1.ActiveSheet.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Range; fpSpread1.ActiveSheet.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Cell; fpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2); fpSpread1.ActiveSheet.AddSelection(3, 0, 2, 2); fpSpread1.ActiveSheet.SelectionBackColor = Color.Red; fpSpread1.ActiveSheet.SelectionForeColor = Color.DarkBlue;
FpSpread1.ActiveSheet.SelectionStyle = FarPoint.Win.Spread.SelectionStyles.SelectionColors FpSpread1.ActiveSheet.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Range FpSpread1.ActiveSheet.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Cell FpSpread1.ActiveSheet.AddSelection(0, 0, 2, 2) FpSpread1.ActiveSheet.AddSelection(3, 0, 2, 2) FpSpread1.ActiveSheet.SelectionBackColor = Color.Red FpSpread1.ActiveSheet.SelectionForeColor = Color.DarkBlue
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10
SheetView Class
SheetView Members
SelectionForeColor Property
SelectionStyle Property