Gets or sets the default vertical alignment for cells in this row.
            
            
            
 Syntax
Syntax
| Visual Basic (Usage) |  Copy Code | 
|---|
| Dim instance As Row
Dim value As CellVerticalAlignment
 
instance.VerticalAlignment = value
 
value = instance.VerticalAlignment | 
Property Value
CellVerticalAlignment object containing the vertical alignment for cell contents
 
            
			
			
            Remarks
            
             Example
Example
This example specifies the alignment for values in the row.
             
| C# |  Copy Code | 
|---|
| FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
r.Height = 70;
fpSpread1.ActiveSheet.SetValue(0, 0, "Alignment"); | 
| Visual Basic |  Copy Code | 
|---|
| Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right
r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom
r.Height = 70
FpSpread1.ActiveSheet.SetValue(0, 0, "Alignment") | 
 Requirements
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
See Also