Spread Silverlight Documentation
TouchSelectionGripperBackgroundColor Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class : TouchSelectionGripperBackgroundColor Property
Gets or sets a Color object for the selection style.
Syntax
'Declaration
 
Public Property TouchSelectionGripperBackgroundColor As System.Windows.Media.Color
'Usage
 
Dim instance As Worksheet
Dim value As System.Windows.Media.Color
 
instance.TouchSelectionGripperBackgroundColor = value
 
value = instance.TouchSelectionGripperBackgroundColor
public System.Windows.Media.Color TouchSelectionGripperBackgroundColor {get; set;}

Property Value

The Color object for this sheet.
Example
This example uses the TouchSelectionGripperBackgroundColor property.
GcSpreadSheet1.Sheets[0].SelectionPolicy = GrapeCity.Windows.SpreadSheet.Data.SelectionPolicy.MultiRange;
GcSpreadSheet1.CanTouchMultiSelect = true;
//GcSpreadSheet1.Sheets[0].TouchSelectionGripperBackgroundColor = System.Windows.Media.Colors.Red;
GcSpreadSheet1.Sheets[0].TouchSelectionGripperBackgroundThemeColor = "Accent 3 40";
//GcSpreadSheet1.Sheets[0].ResetTouchSelectionGripperBackgroundColor();
//GcSpreadSheet1.Sheets[0].ResetTouchSelectionGripperBackgroundThemeColor();
GcSpreadSheet1.Sheets(0).SelectionPolicy = GrapeCity.Windows.SpreadSheet.Data.SelectionPolicy.MultiRange
GcSpreadSheet1.CanTouchMultiSelect = True
'GcSpreadSheet1.Sheets(0).TouchSelectionGripperBackgroundColor = System.Windows.Media.Colors.Red
GcSpreadSheet1.Sheets(0).TouchSelectionGripperBackgroundThemeColor = "Accent 3 40"
'GcSpreadSheet1.Sheets(0).ResetTouchSelectionGripperBackgroundColor()
'GcSpreadSheet1.Sheets(0).ResetTouchSelectionGripperBackgroundThemeColor()
See Also

Reference

Worksheet Class
Worksheet Members