TextOrientation

TextOrientation enumeration

Specifica l’orientamento del testo su una pagina, in una cella di tabella o in una cornice di testo.

public enum TextOrientation

I valori

NomeValoreDescrizione
Horizontal0Il testo è disposto orizzontalmente (lr-tb).
Downward1Il testo viene ruotato di 90 gradi a destra per apparire dall’alto verso il basso (tb-rl).
Upward3Il testo viene ruotato di 90 gradi a sinistra per apparire dal basso verso l’alto (bt-lr).
HorizontalRotatedFarEast4Il testo è disposto orizzontalmente, ma i caratteri dell’Estremo Oriente vengono ruotati di 90 gradi a sinistra (lr-tb-v).
VerticalFarEast5I caratteri dell’Estremo Oriente appaiono in verticale, il resto del testo viene ruotato di 90 gradi a destra per apparire dall’alto verso il basso (tb-rl-v).
VerticalRotatedFarEast7I caratteri dell’Estremo Oriente vengono visualizzati in verticale, il resto del testo viene ruotato di 90 gradi a destra per apparire dall’alto verso il basso in verticale, quindi da sinistra a destra in orizzontale (tb-lr-v).

Esempi

Mostra come creare una tabella 2x2 formattata.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Table table = builder.StartTable();
builder.InsertCell();
builder.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;
builder.Write("Row 1, cell 1.");
builder.InsertCell();
builder.Write("Row 1, cell 2.");
builder.EndRow();

// Durante la creazione della tabella, il generatore di documenti applicherà i valori correnti della proprietà RowFormat/CellFormat
// alla riga/cella corrente in cui si trova il cursore e a qualsiasi nuova riga/cella mentre le crea.
Assert.AreEqual(CellVerticalAlignment.Center, table.Rows[0].Cells[0].CellFormat.VerticalAlignment);
Assert.AreEqual(CellVerticalAlignment.Center, table.Rows[0].Cells[1].CellFormat.VerticalAlignment);

builder.InsertCell();
builder.RowFormat.Height = 100;
builder.RowFormat.HeightRule = HeightRule.Exactly;
builder.CellFormat.Orientation = TextOrientation.Upward;
builder.Write("Row 2, cell 1.");
builder.InsertCell();
builder.CellFormat.Orientation = TextOrientation.Downward;
builder.Write("Row 2, cell 2.");
builder.EndRow();
builder.EndTable();

// Le righe e le celle aggiunte in precedenza non vengono influenzate retroattivamente dalle modifiche alla formattazione del builder.
Assert.AreEqual(0, table.Rows[0].RowFormat.Height);
Assert.AreEqual(HeightRule.Auto, table.Rows[0].RowFormat.HeightRule);
Assert.AreEqual(100, table.Rows[1].RowFormat.Height);
Assert.AreEqual(HeightRule.Exactly, table.Rows[1].RowFormat.HeightRule);
Assert.AreEqual(TextOrientation.Upward, table.Rows[1].Cells[0].CellFormat.Orientation);
Assert.AreEqual(TextOrientation.Downward, table.Rows[1].Cells[1].CellFormat.Orientation);

doc.Save(ArtifactsDir + "DocumentBuilder.BuildTable.docx");

Guarda anche