MaxCharactersPerLine
Innehåll
[
Dölj
]TxtSaveOptions.MaxCharactersPerLine property
Hämtar eller ställer in ett heltalsvärde som anger det maximala antalet tecken per rad. Standardvärdet är 0, det betyder ingen gräns.
public int MaxCharactersPerLine { get; set; }
Exempel
Visar hur man ställer in maximalt antal tecken per rad.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +
"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.");
// Ställ in 30 tecken som maximalt tillåtet per rad.
TxtSaveOptions saveOptions = new TxtSaveOptions { MaxCharactersPerLine = 30 };
doc.Save(ArtifactsDir + "TxtSaveOptions.MaxCharactersPerLine.txt", saveOptions);
Se även
- class TxtSaveOptions
- namnutrymme Aspose.Words.Saving
- hopsättning Aspose.Words