CellStyle VerticalAlignment Property GemBox.Spreadsheet Help
Gets or sets vertical alignment.

Namespace: GemBox.Spreadsheet
Assembly: GemBox.Spreadsheet (in GemBox.Spreadsheet.dll) Version: 37.3.30.1035
Syntax

public VerticalAlignmentStyle VerticalAlignment { get; set; }
Remarks

Default value for this property is VerticalAlignmentStyle.Bottom.
Examples

Following code demonstrates various cell style properties:

static void CellStyle(ExcelWorksheet ws)
{
    ws.Cells[0, 0].Value = "Cell style examples:";

    int row = 0;

    // Column width of 4, 30 and 35 characters.
    ws.Columns[0].Width = 4 * 256;
    ws.Columns[1].Width = 30 * 256;
    ws.Columns[2].Width = 35 * 256;

    ws.Cells[row += 2, 1].Value = ".Style.Borders.SetBorders(...)";
    ws.Cells[row, 2].Style.Borders.SetBorders(MultipleBorders.All, Color.FromArgb(252, 1, 1), LineStyle.Thin);

    ws.Cells[row += 2, 1].Value = ".Style.FillPattern.SetPattern(...)";
    ws.Cells[row, 2].Style.FillPattern.SetPattern(FillPatternStyle.ThinHorizontalCrosshatch, Color.Green, Color.Yellow);

    ws.Cells[row += 2, 1].Value = ".Style.Font.Color =";
    ws.Cells[row, 2].Value = "Color.Blue";
    ws.Cells[row, 2].Style.Font.Color = Color.Blue;

    ws.Cells[row += 2, 1].Value = ".Style.Font.Italic =";
    ws.Cells[row, 2].Value = "true";
    ws.Cells[row, 2].Style.Font.Italic = true;

    ws.Cells[row += 2, 1].Value = ".Style.Font.Name =";
    ws.Cells[row, 2].Value = "Comic Sans MS";
    ws.Cells[row, 2].Style.Font.Name = "Comic Sans MS";

    ws.Cells[row += 2, 1].Value = ".Style.Font.ScriptPosition =";
    ws.Cells[row, 2].Value = "ScriptPosition.Superscript";
    ws.Cells[row, 2].Style.Font.ScriptPosition = ScriptPosition.Superscript;

    ws.Cells[row += 2, 1].Value = ".Style.Font.Size =";
    ws.Cells[row, 2].Value = "18 * 20";
    ws.Cells[row, 2].Style.Font.Size = 18 * 20;

    ws.Cells[row += 2, 1].Value = ".Style.Font.Strikeout =";
    ws.Cells[row, 2].Value = "true";
    ws.Cells[row, 2].Style.Font.Strikeout = true;

    ws.Cells[row += 2, 1].Value = ".Style.Font.UnderlineStyle =";
    ws.Cells[row, 2].Value = "UnderlineStyle.Double";
    ws.Cells[row, 2].Style.Font.UnderlineStyle = UnderlineStyle.Double;

    ws.Cells[row += 2, 1].Value = ".Style.Font.Weight =";
    ws.Cells[row, 2].Value = "ExcelFont.BoldWeight";
    ws.Cells[row, 2].Style.Font.Weight = ExcelFont.BoldWeight;

    ws.Cells[row += 2, 1].Value = ".Style.HorizontalAlignment =";
    ws.Cells[row, 2].Value = "HorizontalAlignmentStyle.Center";
    ws.Cells[row, 2].Style.HorizontalAlignment = HorizontalAlignmentStyle.Center;

    ws.Cells[row += 2, 1].Value = ".Style.Indent";
    ws.Cells[row, 2].Value = "five";
    ws.Cells[row, 2].Style.HorizontalAlignment = HorizontalAlignmentStyle.Left;
    ws.Cells[row, 2].Style.Indent = 5;

    ws.Cells[row += 2, 1].Value = ".Style.IsTextVertical = ";
    ws.Cells[row, 2].Value = "true";
    // Set row height to 50 points.
    ws.Rows[row].Height = 50 * 20;
    ws.Cells[row, 2].Style.IsTextVertical = true;

    ws.Cells[row += 2, 1].Value = ".Style.NumberFormat";
    ws.Cells[row, 2].Value = 1234;
    ws.Cells[row, 2].Style.NumberFormat = "#.##0,00 [$Krakozhian Money Units]";

    ws.Cells[row += 2, 1].Value = ".Style.Rotation";
    ws.Cells[row, 2].Value = "35 degrees up";
    ws.Cells[row, 2].Style.Rotation = 35;

    ws.Cells[row += 2, 1].Value = ".Style.ShrinkToFit";
    ws.Cells[row, 2].Value = "This property is set to true so this text appears shrunk.";
    ws.Cells[row, 2].Style.ShrinkToFit = true;

    ws.Cells[row += 2, 1].Value = ".Style.VerticalAlignment =";
    ws.Cells[row, 2].Value = "VerticalAlignmentStyle.Top";
    // Set row height to 30 points.
    ws.Rows[row].Height = 30 * 20;
    ws.Cells[row, 2].Style.VerticalAlignment = VerticalAlignmentStyle.Top;

    ws.Cells[row += 2, 1].Value = ".Style.WrapText";
    ws.Cells[row, 2].Value = "This property is set to true so this text appears broken into multiple lines.";
    ws.Cells[row, 2].Style.WrapText = true;
}
See Also