FontFamily
Contenu
[
Cacher
]TextWatermarkOptions.FontFamily property
Obtient ou définit le nom de la famille de polices. La valeur par défaut est “Calibri”.
public string FontFamily { get; set; }
Exemples
Montre comment créer un filigrane de texte.
Document doc = new Document();
// Ajoute un filigrane en texte brut.
doc.Watermark.SetText("Aspose Watermark");
// Si l'on souhaite éditer la mise en forme du texte en l'utilisant comme filigrane,
// nous pouvons le faire en passant un objet TextWatermarkOptions lors de la création du filigrane.
TextWatermarkOptions textWatermarkOptions = new TextWatermarkOptions();
textWatermarkOptions.FontFamily = "Arial";
textWatermarkOptions.FontSize = 36;
textWatermarkOptions.Color = Color.Black;
textWatermarkOptions.Layout = WatermarkLayout.Diagonal;
textWatermarkOptions.IsSemitrasparent = false;
doc.Watermark.SetText("Aspose Watermark", textWatermarkOptions);
doc.Save(ArtifactsDir + "Document.TextWatermark.docx");
// Nous pouvons supprimer un filigrane d'un document comme celui-ci.
if (doc.Watermark.Type == WatermarkType.Text)
doc.Watermark.Remove();
Voir également
- class TextWatermarkOptions
- espace de noms Aspose.Words
- Assemblée Aspose.Words