public static API_CatNet_VS2010 add_Feature_OpenReportOnFileDrop(this API_CatNet_VS2010 vsCatNet) { "[API_CatNet_VS2012] add_Feature_OpenReportOnFileDrop".debug(); vsCatNet.Summary.onDrop( (file) => { "[CatNet] a file was droppped: {0}".info(file); vsCatNet.openReport(file); }); return(vsCatNet); }
public static API_CatNet_VS2010 openReport(this API_CatNet_VS2010 catNet, string pathToReport) { catNet.VsConnect.OpenReport(pathToReport); return(catNet); }