Gets or sets whether tapping displays the gripper in edit mode.
Syntax
Visual Basic (Declaration) | |
---|
Public Property ShowGrippersInEditingStatus As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As FpSpread
Dim value As Boolean
instance.ShowGrippersInEditingStatus = value
value = instance.ShowGrippersInEditingStatus |
C# | |
---|
public bool ShowGrippersInEditingStatus {get; set;} |
Example
This example sets the ShowGrippersInEditingStatus property.
C# | Copy Code |
---|
private void Form1_Load(object sender, EventArgs e)
{
fpSpread1.ShowGrippersInEditingStatus = true;
}
private void button1_Click(object sender, EventArgs e)
{
fpSpread1.ShowGrippersInEditingStatus = false;
}
private void fpSpread1_ShowGrippersInEditingStatusChanged(object sender, EventArgs e)
{
listBox1.Items.Add("Status Changed");
} |
VB.NET | Copy Code |
---|
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
FpSpread1.ShowGrippersInEditingStatus = True
End Sub
Private Sub FpSpread1_ShowGrippersInEditingStatusChanged(sender As Object, e As EventArgs) Handles FpSpread1.ShowGrippersInEditingStatusChanged
ListBox1.Items.Add("Status Changed")
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
FpSpread1.ShowGrippersInEditingStatus = False
End Sub |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also