#include <rlspreadsheet.h>
A cell of a spreadsheet.
Definition at line 24 of file rlspreadsheet.h.
rlSpreadsheetCell::rlSpreadsheetCell |
( |
const char * |
text = 0 | ) |
|
Definition at line 25 of file rlspreadsheet.cpp.
{
if(Text != NULL)
{
txt =
new char[strlen(Text)+1];
}
else
{
}
}
rlSpreadsheetCell::~rlSpreadsheetCell |
( |
| ) |
|
|
virtual |
void rlSpreadsheetCell::clear |
( |
| ) |
|
int rlSpreadsheetCell::exists |
( |
| ) |
|
int rlSpreadsheetCell::printf |
( |
const char * |
format, |
|
|
|
... |
|
) |
| |
Definition at line 62 of file rlspreadsheet.cpp.
{
int ret;
va_list ap;
va_start(ap,format);
va_end(ap);
return ret;
}
void rlSpreadsheetCell::setText |
( |
const char * |
text | ) |
|
Definition at line 50 of file rlspreadsheet.cpp.
{
if(
txt != NULL)
delete []
txt;
if(Text == NULL)
{
return;
}
txt =
new char[strlen(Text)+1];
}
const char * rlSpreadsheetCell::text |
( |
| ) |
|
char* rlSpreadsheetCell::txt |
|
private |
The documentation for this class was generated from the following files: