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

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

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

Usage Example

Пример #1
0
 public static PdfObject GetDirectObject(PdfObject obj) {
     if (obj == null)
         return null;
     while (obj.IsIndirect())
         obj = PdfReader.GetPdfObjectRelease(obj);
     return obj;
 }
All Usage Examples Of iTextSharp.text.pdf.PdfObject::IsIndirect