:: org :: openoffice :: vba ::

interface XWorksheet
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XWorksheet
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces

Methods' Summary
Activate  
Calculate  
Select  
Move  
Copy  
Paste  
Delete  
Protect  
Unprotect  
CheckSpelling  
Range  
Outline  
Methods' Details
Activate
void
Activate();

Calculate
void
Calculate();

Select
void
Select();

Move
void
Move( [in] any  Before,
[in] any  After );

Copy
void
Copy( [in] any  Before,
[in] any  After );

Paste
void
Paste( [in] any  Destination,
[in] any  Link );

Delete
void
Delete();

Protect
void
Protect( [in] any  Password,
[in] any  DrawingObjects,
[in] any  Contents,
[in] any  Scenarios,
[in] any  UserInterfaceOnly );

Unprotect
void
Unprotect( [in] any  Password );

CheckSpelling
void
CheckSpelling( [in] any  CustomDictionary,
[in] any  IgnoreUppercase,
[in] any  AlwaysSuggest,
[in] any  SpellingLang );

Range
XRange
Range( [in] any  range );

Outline
XOutline
Outline();

Attributes' Summary
Name  
Visible  
StandardHeight  
StandardWidth  
ProtectionMode  
ProtectContents  
ProtectDrawingObjects  
UsedRange  
Attributes' Details
Name
[ readonly ] string Name;
Visible
boolean Visible;
StandardHeight
[ readonly ] long StandardHeight;
StandardWidth
[ readonly ] long StandardWidth;
ProtectionMode
[ readonly ] boolean ProtectionMode;
ProtectContents
[ readonly ] boolean ProtectContents;
ProtectDrawingObjects
[ readonly ] boolean ProtectDrawingObjects;
UsedRange
[ readonly ] XRange UsedRange;
Top of Page