:: org :: openoffice :: vba ::

interface XWorkbook

Methods' Summary
Worksheets  
Close  
Protect  
Unprotect  
Save  
Activate  
Methods' Details
Worksheets
any
Worksheets( [in] any  sheet );

Close
void
Close( [in] any  SaveChanges,
[in] any  FileName,
[in] any  RouteWorkBook );

Protect
void
Protect( [in] any  Password );

Unprotect
void
Unprotect( [in] any  Password );

Save
void
Save();

Activate
void
Activate();

Attributes' Summary
Name  
Path  
FullName  
ProtectStructure  
ActiveSheet  
Saved  
Attributes' Details
Name
[ readonly ] string Name;
Path
[ readonly ] string Path;
FullName
[ readonly ] string FullName;
ProtectStructure
[ readonly ] boolean ProtectStructure;
ActiveSheet
[ readonly ] XWorksheet ActiveSheet;
Saved
boolean Saved;
Top of Page