Spread Windows Forms 6.0 Product Documentation
FillDirection Enumeration
Example  See Also  Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : FillDirection Enumeration


Glossary Item Box

Specifies the direction of the filling of cells.

Syntax

Visual Basic (Declaration) 
Public Enum FillDirection 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As FillDirection
C# 
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

C#Copy Code
fpSpread1.ActiveSheet.Cells[0, 0, 1, 1].Text = "Fill";
fpSpread1.ActiveSheet.FillRange(3, 0, 1, 1, 1, FarPoint.Win.Spread.FillDirection.Right);
Visual BasicCopy Code
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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.