LineSpacingRule
Contenu
[
Cacher
]ParagraphFormat.LineSpacingRule property
Obtient ou définit l’interligne du paragraphe.
public LineSpacingRule LineSpacingRule { get; set; }
Exemples
Montre comment utiliser l’espacement des lignes.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Vous trouverez ci-dessous trois règles d'espacement des lignes que nous pouvons définir à l'aide de la
// Propriété "LineSpacingRule" du paragraphe pour configurer l'espacement entre les paragraphes.
// 1 - Définit un espacement minimum.
// Cela donnera un remplissage vertical aux lignes de texte de n'importe quelle taille
// c'est trop petit pour maintenir la hauteur de ligne minimale.
builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.AtLeast;
builder.ParagraphFormat.LineSpacing = 20;
builder.Writeln("Minimum line spacing of 20.");
builder.Writeln("Minimum line spacing of 20.");
// 2 - Définir l'espacement exact.
// L'utilisation de tailles de police trop grandes pour l'espacement tronquera le texte.
builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly;
builder.ParagraphFormat.LineSpacing = 5;
builder.Writeln("Line spacing of exactly 5.");
builder.Writeln("Line spacing of exactly 5.");
// 3 - Définissez l'espacement comme un multiple de l'espacement des lignes par défaut, qui est de 12 points par défaut.
// Ce type d'espacement s'adaptera à différentes tailles de police.
builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Multiple;
builder.ParagraphFormat.LineSpacing = 18;
builder.Writeln("Line spacing of 1.5 default lines.");
builder.Writeln("Line spacing of 1.5 default lines.");
doc.Save(ArtifactsDir + "ParagraphFormat.LineSpacing.docx");
Voir également
- enum LineSpacingRule
- class ParagraphFormat
- espace de noms Aspose.Words
- Assemblée Aspose.Words