Class HeaderFooterOptions
Defines header or footer content to be applied.
Inherited Members
Namespace: Accusoft.PrizmDocServer.Conversion
Assembly: PrizmDocServerSDK.dll
Syntax
public class HeaderFooterOptions
Properties
Color
Gets or sets the color to use for the header or footer. Value must be a CSS hex-based color value (like "#FF0000"
).
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
String |
FontFamily
Gets or sets font family to use for the header or footer. The font family must be available on the remote server.
Declaration
public string FontFamily { get; set; }
Property Value
Type | Description |
---|---|
String |
FontSize
Gets or sets the font size, in points, to use for the header or footer. Value must be a string with a number followed by "pt"
, such as "12.pt"
.
Declaration
public string FontSize { get; set; }
Property Value
Type | Description |
---|---|
String |
Lines
Gets or sets the collection of header or footer lines which should be applied to the output document. Each line may define text in the left, center, and/or right position.
Declaration
public List<HeaderFooterLine> Lines { get; set; }
Property Value
Type | Description |
---|---|
List<HeaderFooterLine> |