Size
Inhalt
[
Ausblenden
]Font.Size property
Ruft die Schriftgröße in Punkten ab oder legt sie fest.
public double Size { get; set; }
Beispiele
Zeigt, wie eine Textzeile mithilfe ihrer Schriftarteigenschaft formatiert wird.
Document doc = new Document();
Run run = new Run(doc, "Hello world!");
Aspose.Words.Font font = run.Font;
font.Name = "Courier New";
font.Size = 36;
font.HighlightColor = Color.Yellow;
doc.FirstSection.Body.FirstParagraph.AppendChild(run);
doc.Save(ArtifactsDir + "Font.CreateFormattedRun.docx");
Zeigt, wie formatierter Text mit DocumentBuilder eingefügt wird.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Geben Sie die Schriftartformatierung an und fügen Sie dann Text hinzu.
Aspose.Words.Font font = builder.Font;
font.Size = 16;
font.Bold = true;
font.Color = Color.Blue;
font.Name = "Courier New";
font.Underline = Underline.Dash;
builder.Write("Hello world!");
Siehe auch
- class Font
- namensraum Aspose.Words
- Montage Aspose.Words