iTextSharp.text.pdf.PdfObject.IsDictionary C# (CSharp) Метод

IsDictionary() публичный Метод

public IsDictionary ( ) : bool
Результат bool
        public bool IsDictionary() {
            return (this.type == DICTIONARY);
        }
    

Usage Example

Пример #1
0
            private PdfDictionary GetPropertiesDictionary(iTextSharp.text.pdf.PdfObject operand1, ResourceDictionary resources)
            {
                if (operand1.IsDictionary())
                {
                    return((PdfDictionary)operand1);
                }

                PdfName dictionaryName = ((PdfName)operand1);

                return(resources.GetAsDict(dictionaryName));
            }
All Usage Examples Of iTextSharp.text.pdf.PdfObject::IsDictionary