Spread Windows Forms 12.0 Product Documentation
FillDirection Enumeration
Example Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : FillDirection Enumeration
Specifies the direction of the filling of cells.
Syntax
'Declaration
 
Public Enum FillDirection 
   Inherits System.Enum
'Usage
 
Dim instance As FillDirection
public enum FillDirection : System.Enum 
Members
MemberDescription
DownFills from the top to the bottom
LeftFills from the right to the left
RightFills from the left to the right
UpFills from the bottom to the top
Example
fpSpread1.ActiveSheet.Cells[0, 0, 1, 1].Text = "Fill";
fpSpread1.ActiveSheet.FillRange(3, 0, 1, 1, 1, FarPoint.Win.Spread.FillDirection.Right);
FpSpread1.ActiveSheet.Cells(0, 0, 1, 1).Text = "Fill"
FpSpread1.ActiveSheet.FillRange(4, 0, 1, 1, 1, FarPoint.Win.Spread.FillDirection.Down)
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.FillDirection

See Also

Reference

FarPoint.Win.Spread Namespace
FillRange Method (SheetView Class)

User-Task Documentation

Filling a Range of Cells