Beispiel #1
0
/*!
\param name Name of the argument.
\param comment Help string associated to the argument.
\param type Argument type (defaults to R for XLOPER *). Other argument
type can be found in Excel documentation under the keyword \e register.
Note that B stands for double or date, I for 16 bits integer, J for
32 bits integer. I rarely use the other types.
*/
XlfArgDesc::XlfArgDesc(const std::string& name,
                       const std::string& comment,
                       char type)
    : name_(name), comment_(comment), type_(type)
{
    CheckNameLength();
}
Beispiel #2
0
void xlw::XlfArgDesc::SetName(const std::string& name)
{
    name_ = name;
    CheckNameLength();
}