:: org :: openoffice :: vba ::

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

Methods' Summary
Clear  
ClearComments  
ClearContents  
ClearFormats  
HasFormula  
FillLeft  
FillRight  
FillUp  
FillDown  
Offset  
CurrentRegion  
CurrentArray  
Characters  
Address  
Cells  
Select  
Rows  
Columns  
Copy  
Cut  
Resize  
Font  
Methods' Details
Clear
void
Clear();

ClearComments
void
ClearComments();

ClearContents
void
ClearContents();

ClearFormats
void
ClearFormats();

HasFormula
boolean
HasFormula();

FillLeft
void
FillLeft();

FillRight
void
FillRight();

FillUp
void
FillUp();

FillDown
void
FillDown();

Offset
XRange
Offset( [in] any  RowOffset,
[in] any  ColumnOffset );

CurrentRegion
XRange
CurrentRegion();

CurrentArray
XRange
CurrentArray();

Characters
string
Characters( [in] any  Start,
[in] any  Length );

Address
string
Address();

Cells
XRange
Cells( [in] any  RowIndex,
[in] any  ColumnIndex );

Select
void
Select();

Rows
any
Rows( [in] any  RowIndex );

Columns
any
Columns( [in] any  ColumnIndex );

Copy
void
Copy( [in] any  Destination );

Cut
void
Cut( [in] any  Destination );

Resize
XRange
Resize( [in] any  RowSize,
[in] any  ColumnSize );

Font
XFont
Font();

Attributes' Summary
Value  
Formula  
Count  
Row  
Column  
Text  
FormulaArray  
MergeCells  
NumberFormat  
WrapText  
Attributes' Details
Value
any Value;
Formula
string Formula;
Count
[ readonly ] double Count;
Row
[ readonly ] long Row;
Column
[ readonly ] long Column;
Text
[ readonly ] string Text;
FormulaArray
string FormulaArray;
MergeCells
boolean MergeCells;
NumberFormat
string NumberFormat;
WrapText
boolean WrapText;
Top of Page