FixedDocument Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the FixedDocument class.
public:
FixedDocument();
public FixedDocument ();
Public Sub New ()
Examples
The following example shows use of the FixedDocument constructor.
// ------------------------ CreateFixedDocument -----------------------
/// <summary>
/// Creates an empty FixedDocument.</summary>
/// <returns>
/// An empty FixedDocument without any content.</returns>
private FixedDocument CreateFixedDocument()
{
FixedDocument fixedDocument = new FixedDocument();
fixedDocument.DocumentPaginator.PageSize = new Size(96 * 8.5, 96 * 11);
return fixedDocument;
}
' ------------------------ CreateFixedDocument -----------------------
''' <summary>
''' Creates an empty FixedDocument.</summary>
''' <returns>
''' An empty FixedDocument without any content.</returns>
Private Function CreateFixedDocument() As FixedDocument
Dim fixedDocument As New FixedDocument()
fixedDocument.DocumentPaginator.PageSize = New Size(96 * 8.5, 96 * 11)
Return fixedDocument
End Function
Applies to
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.