HyphenateCaps
HyphenationOptions.HyphenateCaps property
Gets or sets value determining whether words written in all capital letters are hyphenated. Default value for this property is true
.
public bool HyphenateCaps { get; set; }
Examples
Shows how to configure automatic hyphenation.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Font.Size = 24;
builder.Writeln("Lorem ipsum dolor sit amet, consectetur adipiscing elit, " +
"sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
doc.HyphenationOptions.AutoHyphenation = true;
doc.HyphenationOptions.ConsecutiveHyphenLimit = 2;
doc.HyphenationOptions.HyphenationZone = 720;
doc.HyphenationOptions.HyphenateCaps = true;
doc.Save(ArtifactsDir + "Document.HyphenationOptions.docx");
See Also
- class HyphenationOptions
- namespace Aspose.Words.Settings
- assembly Aspose.Words