public void LoadFromLibraryWizard(string xName) { GSDRootUtil.Dir_GetLibrary_CheckSpecialDirs(); string xPath = GSDRootUtil.Dir_GetLibrary(); string tPath = xPath + "W/" + xName + ".gsd"; EdgeObjectLibraryMaker ELM = (EdgeObjectLibraryMaker)GSDRootUtil.LoadXML <EdgeObjectLibraryMaker>(ref tPath); ELM.LoadTo(this); bNeedsUpdate = true; }
public void LoadFromLibrary(string xName, bool bIsQuickAdd = false) { GSDRootUtil.Dir_GetLibrary_CheckSpecialDirs(); string xPath = GSDRootUtil.Dir_GetLibrary(); string tPath = xPath + "EOM" + xName + ".gsd"; if (bIsQuickAdd) { tPath = xPath + "Q/EOM" + xName + ".gsd"; } EdgeObjectLibraryMaker ELM = (EdgeObjectLibraryMaker)GSDRootUtil.LoadXML <EdgeObjectLibraryMaker>(ref tPath); ELM.LoadTo(this); bNeedsUpdate = true; }
public void LoadFromLibraryBulk(ref EdgeObjectLibraryMaker ELM) { ELM.LoadTo(this); }
public void LoadFromLibraryBulk(ref EdgeObjectLibraryMaker ELM){ ELM.LoadTo(this); }