PrintingPermissionLevel Enum
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.
Specifies the type of printing that code is allowed to do.
public enum class PrintingPermissionLevel
public enum PrintingPermissionLevel
[System.Serializable]
public enum PrintingPermissionLevel
type PrintingPermissionLevel =
[<System.Serializable>]
type PrintingPermissionLevel =
Public Enum PrintingPermissionLevel
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
NoPrinting | 0 | Prevents access to printers. NoPrinting is a subset of SafePrinting. |
SafePrinting | 1 | Provides printing only from a restricted dialog box. SafePrinting is a subset of DefaultPrinting. |
DefaultPrinting | 2 | Provides printing programmatically to the default printer, along with safe printing through semirestricted dialog box. DefaultPrinting is a subset of AllPrinting. |
AllPrinting | 3 | Provides full access to all printers. |
Remarks
This enumeration is used by the PrintingPermission class.