ApiExamples.ExDocument.GetProtectionType C# (CSharp) Метод

GetProtectionType() приватный Метод

private GetProtectionType ( ) : void
Результат void
        public void GetProtectionType()
        {
            //ExStart
            //ExFor:Document.ProtectionType
            //ExId:GetProtectionType
            //ExSummary:Shows how to get protection type currently set in the document.
            Document doc = new Document(MyDir + "Document.doc");
            ProtectionType protectionType = doc.ProtectionType;
            //ExEnd
        }
ExDocument