123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model.Dialog.ToolsDialogs.SaftyDialogs
- {
- public class CheckPasswordDialogModel
- {
- }
- public enum EnumPermissionsSet
- {
- None = 0,
- StatusAllowsDocumentChanges = 1<<1,
- StatusAllowsPrinting = 1 <<2,
- StatusAllowsHighQualityPrinting = 1<<3,
- StatusAllowsCopying = 1<<4,
- StatusAllowsDocumentAssembly = 1<<5,
- StatusAllowsFormFieldEntry = 1<<6,
- StatusAllowsCommenting = 1<<7
- }
-
- }
|