Gets or sets the color of the selection gripper line.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property SelectionGripperLineColor As Color |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As TouchInfo
Dim value As Color
instance.SelectionGripperLineColor = value
value = instance.SelectionGripperLineColor |
| C# | |
|---|
public Color SelectionGripperLineColor {get; set;} |
Property Value
The color of the selection gripper line. If it is set to Empty, the color is the same as FocusRectangleBorderColor
Example
This example sets the SelectionGripperLineColor property.
| C# | Copy Code |
|---|
FpSpread1.TouchInfo.SelectionGripperBackColor = System.Drawing.Color.Aqua;
FpSpread1.TouchInfo.SelectionGripperLineColor = System.Drawing.Color.BurlyWood;
FpSpread1.TouchInfo.SelectionGripperThickness = 2; |
| VB.NET | Copy Code |
|---|
FpSpread1.TouchInfo.SelectionGripperBackColor = System.Drawing.Color.Aqua
FpSpread1.TouchInfo.SelectionGripperLineColor = System.Drawing.Color.BurlyWood
FpSpread1.TouchInfo.SelectionGripperThickness = 2 |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also