HtmlFixedPageHorizontalAlignment
Contenido
[
Ocultar
]HtmlFixedPageHorizontalAlignment enumeration
Especifica la alineación horizontal de las páginas en el documento HTML de salida.
public enum HtmlFixedPageHorizontalAlignment
Valores
Nombre | Valor | Descripción |
---|---|---|
Left | 0 | Alinear páginas a la izquierda. |
Center | 1 | Centro de páginas. Este es el valor predeterminado. |
Right | 2 | Alinear páginas a la derecha. |
Ejemplos
Muestra cómo configurar la alineación horizontal de las páginas al guardar un documento en HTML.
Document doc = new Document(MyDir + "Rendering.docx");
HtmlFixedSaveOptions htmlFixedSaveOptions = new HtmlFixedSaveOptions
{
PageHorizontalAlignment = pageHorizontalAlignment
};
doc.Save(ArtifactsDir + "HtmlFixedSaveOptions.HorizontalAlignment.html", htmlFixedSaveOptions);
string outDocContents = File.ReadAllText(ArtifactsDir + "HtmlFixedSaveOptions.HorizontalAlignment/styles.css");
switch (pageHorizontalAlignment)
{
case HtmlFixedPageHorizontalAlignment.Center:
Assert.True(Regex.Match(outDocContents,
"[.]awpage { position:relative; border:solid 1pt black; margin:10pt auto 10pt auto; overflow:hidden; }").Success);
break;
case HtmlFixedPageHorizontalAlignment.Left:
Assert.True(Regex.Match(outDocContents,
"[.]awpage { position:relative; border:solid 1pt black; margin:10pt auto 10pt 10pt; overflow:hidden; }").Success);
break;
case HtmlFixedPageHorizontalAlignment.Right:
Assert.True(Regex.Match(outDocContents,
"[.]awpage { position:relative; border:solid 1pt black; margin:10pt 10pt 10pt auto; overflow:hidden; }").Success);
break;
}
Ver también
- espacio de nombres Aspose.Words.Saving
- asamblea Aspose.Words