StaDeleteLabel
StaDeleteLabel
is used to remove labels associated with a specified text value for a
given variable. To perform this operation in STATISTICA's
COM library, simply call:
Programming Language |
Example |
Visual Basic |
'assuming
"Spr" is a spreadsheet
Spr.RemoveTextLabel(1,"GENDER") |
C++ |
'assuming
"pSpreadsheet" is a pointer to a spreadsheet
pSpreadSheet->RemoveTextLabel(1,static_cast<char*>("GENDER")); |
See also Migrating from StaDev to STATISTICA's
COM architecture for a comprehensive list of all StaDev32 functions
that can be migrated to STATISTICA's
COM library.