public new bool Read(GH_IReader reader) { if (!reader.ItemExists("Image")) { this.Value = null; return(false); } if (!reader.ItemExists("ReportPart")) { this.ReportPart = null; return(false); } if (!reader.ItemExists("RefTag")) { this._refTag = null; return(false); } this.Value = reader.GetDrawingBitmap("Image"); this.ReportPart = reader.GetString("ReportPart"); this._refTag = reader.GetString("RefTag"); return(true); }