GrapeCity.Xaml.SpreadSheet.Data
TouchSelectionGripperBackgroundThemeColor Property
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class : TouchSelectionGripperBackgroundThemeColor Property
Gets or sets a string object for the selection style.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property TouchSelectionGripperBackgroundThemeColor As String
'Usage
 
Dim instance As Worksheet
Dim value As String
 
instance.TouchSelectionGripperBackgroundThemeColor = value
 
value = instance.TouchSelectionGripperBackgroundThemeColor
[DefaultValue()]
public string TouchSelectionGripperBackgroundThemeColor {get; set;}

Property Value

The string object for this sheet.
Example
This example sets the TouchSelectionGripperBackgroundThemeColor property.
GcSpreadSheet1.Sheets[0].SelectionPolicy = GrapeCity.Xaml.SpreadSheet.Data.SelectionPolicy.MultiRange;
GcSpreadSheet1.CanTouchMultiSelect = true;
GcSpreadSheet1.Sheets[0].TouchSelectionGripperBackgroundColor = Windows.UI.Colors.Red;
//GcSpreadSheet1.Sheets[0].TouchSelectionGripperBackgroundThemeColor = "Accent 3 40";
//GcSpreadSheet1.Sheets[0].ResetTouchSelectionGripperBackgroundColor();
//GcSpreadSheet1.Sheets[0].ResetTouchSelectionGripperBackgroundThemeColor();

GcSpreadSheet1.Sheets(0).SelectionPolicy = GrapeCity.Xaml.SpreadSheet.Data.SelectionPolicy.MultiRange
GcSpreadSheet1.CanTouchMultiSelect = True
GcSpreadSheet1.Sheets(0).TouchSelectionGripperBackgroundColor = Windows.UI.Colors.Red
'GcSpreadSheet1.Sheets(0).TouchSelectionGripperBackgroundThemeColor = "Accent 3 40"
'GcSpreadSheet1.Sheets(0).ResetTouchSelectionGripperBackgroundColor()
'GcSpreadSheet1.Sheets(0).ResetTouchSelectionGripperBackgroundThemeColor()

See Also

Reference

Worksheet Class
Worksheet Members