iTextSharp.text.pdf.PdfObject.IsNull C# (CSharp) Method

IsNull() public method

public IsNull ( ) : bool
return bool
        public bool IsNull() {
            return (this.type == NULL);
        }
    

Usage Example

Ejemplo n.º 1
0
 internal void AddDefaultColor(PdfName name, PdfObject obj)
 {
     if (obj == null || obj.IsNull())
     {
         colorDictionary.Remove(name);
     }
     else
     {
         colorDictionary.Put(name, obj);
     }
 }
All Usage Examples Of iTextSharp.text.pdf.PdfObject::IsNull