Gets or sets the type of metafiles used when printing standard .NET PrintDocument documents.

The default is EmfType.EmfPlusDual.

If your printer needs to scan the output for data (e.g. a fax number; a case in point is Tobit Faxware) and fails, try setting this to EmfType.EmfOnly.

Note that this property ONLY affects printing of standard .NET PrintDocument documents, and has no bearing on other supported document types.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(EmfType.EmfPlusDual)]
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
[BrowsableAttribute(false)]
public static EmfType MsPrintDocumentPrintEmfType { get; set; }
Visual Basic
<DefaultValueAttribute(EmfType.EmfPlusDual)> _
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
<BrowsableAttribute(False)> _
Public Shared Property MsPrintDocumentPrintEmfType As EmfType
	Get
	Set

Remarks

The default value for this property is EmfType.EmfPlusDual.

See Also