T O P I C R E V I E W |
cjfraz |
Posted - 05/05/2006 : 10:39:24 AM Origin Version (Select Help-->About Origin): 7.5sr5 Operating System:xp pro xp2
Likely a very easy question, but I can't seem to find the answer in the on-line help.
What's the proper way to totally delete a given worksheet from OriginC?
Thanks,
J...
|
2 L A T E S T R E P L I E S (Newest First) |
cjfraz |
Posted - 05/05/2006 : 12:04:03 PM Thank you! |
easwar |
Posted - 05/05/2006 : 11:55:46 AM Hi J,
You can use the .Destory() method on either worksheet object or the worksheetpage object. The page has only one sheet so destroying the worksheet also destroys the page.
Worksheet wks(strWksName); if( wks ) wks.Destroy();
or
WorksheetPage wpg(strWpgName); if( wpg ) wpg.Destroy();
Easwar OriginLab
|