Spread Silverlight Documentation
ShowDragDropTip Property (SheetView)
Example 


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : ShowDragDropTip Property
Gets or sets a value that indicates whether to show the drag drop tip.
Syntax
'Declaration
 
Public Property ShowDragDropTip As System.Boolean
'Usage
 
Dim instance As SheetView
Dim value As System.Boolean
 
instance.ShowDragDropTip = value
 
value = instance.ShowDragDropTip
public System.bool ShowDragDropTip {get; set;}

Property Value

true if show drag drop tip; otherwise, false.
Example
This example uses the ShowDragDropTip property.
GcSpreadSheet1.View.CanUserDragDrop = true;
GcSpreadSheet1.View.CanUserDragFill = true;
GcSpreadSheet1.View.ShowDragDropTip = true;
GcSpreadSheet1.View.ShowDragFillTip = true;
GcSpreadSheet1.View.ShowResizeTip = GrapeCity.Windows.SpreadSheet.Data.ShowResizeTip.Both;
GcSpreadSheet1.View.ShowScrollTip = GrapeCity.Windows.SpreadSheet.Data.ShowScrollTip.Both;
GcSpreadSheet1.View.CanUserDragDrop = True
GcSpreadSheet1.View.CanUserDragFill = True
GcSpreadSheet1.View.ShowDragDropTip = True
GcSpreadSheet1.View.ShowDragFillTip = True
GcSpreadSheet1.View.ShowResizeTip = GrapeCity.Windows.SpreadSheet.Data.ShowResizeTip.Both
GcSpreadSheet1.View.ShowScrollTip = GrapeCity.Windows.SpreadSheet.Data.ShowScrollTip.Both
See Also

Reference

SheetView Class
SheetView Members