You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
538 B
22 lines
538 B
#include <QtCore>
|
|
#include "xlsxdocument.h"
|
|
#include "xlsxdatavalidation.h"
|
|
|
|
QTXLSX_USE_NAMESPACE
|
|
|
|
int main()
|
|
{
|
|
Document xlsx;
|
|
xlsx.write("A1", "A2 and A3:E5 only accept the number between 33 and 99");
|
|
|
|
//![1]
|
|
DataValidation validation(DataValidation::Whole, DataValidation::Between, "33", "99");
|
|
validation.addRange("A2");
|
|
validation.addRange("A3:E5");
|
|
validation.setPromptMessage("Please Input Integer between 33 and 99");
|
|
xlsx.addDataValidation(validation);
|
|
//![1]
|
|
|
|
xlsx.save();
|
|
return 0;
|
|
}
|
|
|