AddSpaceBetweenFarEastAndAlpha
Contenu
[
Cacher
]ParagraphFormat.AddSpaceBetweenFarEastAndAlpha property
Obtient ou définit un indicateur indiquant si l’espacement entre les caractères est automatiquement ajusté entre les régions du texte latin et les régions du texte d’Asie de l’Est dans le paragraphe actuel.
public bool AddSpaceBetweenFarEastAndAlpha { get; set; }
Exemples
Montre comment insérer un paragraphe dans le document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Font font = builder.Font;
font.Size = 16;
font.Bold = true;
font.Color = Color.Blue;
font.Name = "Arial";
font.Underline = Underline.Dash;
ParagraphFormat paragraphFormat = builder.ParagraphFormat;
paragraphFormat.FirstLineIndent = 8;
paragraphFormat.Alignment = ParagraphAlignment.Justify;
paragraphFormat.AddSpaceBetweenFarEastAndAlpha = true;
paragraphFormat.AddSpaceBetweenFarEastAndDigit = true;
paragraphFormat.KeepTogether = true;
// La méthode "Writeln" termine le paragraphe après avoir ajouté du texte
// puis commence une nouvelle ligne, ajoutant un nouveau paragraphe.
builder.Writeln("Hello world!");
Assert.True(builder.CurrentParagraph.IsEndOfDocument);
Voir également
- class ParagraphFormat
- espace de noms Aspose.Words
- Assemblée Aspose.Words