privatevoid fpSpread1_DragFillBlock(object sender, FarPoint.Win.Spread.DragFillBlockEventArgs e)
{
textBox1.Text = "The direction of the fill is " + e.Direction;
}
PrivateSub FpSpread1_DragFillBlock(ByVal sender AsObject, ByVal e As FarPoint.Win.Spread.DragFillBlockEventArgs) Handles
FpSpread1.DragFillBlock
TextBox1.Text = "The direction of the fill is " & e.Direction
End Sub