Allows to specify default alignment. Can be used in properties like a PageAlignment or PageNumbersAlignH
Namespace:
SautinSoftAssembly: SautinSoft.HtmlToRtf (in SautinSoft.HtmlToRtf.dll) Version: 4.6.10.19
Syntax
| C# | Visual Basic |
public enum eAlign
Public Enumeration eAlign
Members
| Member | Description |
|---|---|
| Left |
Left
|
| Right |
Right
|
| Center |
Center
|
| Justify |
Justify
|
| Top |
Top
|
| Bottom |
Bottom
|
| Undefined |
Undefined (only for internal needs of the component)
|
Remarks
Examples
SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();
h.PageAlignment = HtmlToRtf.eAlign.Right;
h.PageNumbersAlignV = HtmlToRtf.eAlign.Top;Dim h As New SautinSoft.HtmlToRtf() h.PageAlignment = HtmlToRtf.eAlign.Right h.PageNumbersAlignV = HtmlToRtf.eAlign.Top