HyphenationOptionsHyphenationZone Property

Gets or sets the distance in 1/20 of a point from the right margin within which you do not want to hyphenate words. Default value for this property is 360 (0.25 inch).

Namespace:  Aspose.Words.Settings
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public int HyphenationZone { get; set; }

Property Value

Type: Int32
Examples
Shows how to configure document hyphenation options.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Set this to insert a page break before this paragraph
builder.Font.Size = 24;
builder.ParagraphFormat.SuppressAutoHyphens = false;

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; // 0.5 inch
doc.HyphenationOptions.HyphenateCaps = true;

// Each paragraph has this flag that can be set to suppress hyphenation
Assert.False(builder.ParagraphFormat.SuppressAutoHyphens);

doc.Save(ArtifactsDir + "Document.HyphenationOptions.docx");
See Also