MCPcopy Create free account
hub / github.com/KDE/labplot / hasFillData

Method hasFillData

src/3rdparty/QXlsx/source/xlsxformat.cpp:1065–1075  ·  view source on GitHub ↗

! \internal Return true if the format has fill format, otherwise return false. */

Source from the content-addressed store, hash-verified

1063 Return true if the format has fill format, otherwise return false.
1064 */
1065bool Format::hasFillData() const
1066{
1067 if (!d)
1068 return false;
1069
1070 for (int i=FormatPrivate::P_Fill_STARTID; i<FormatPrivate::P_Fill_ENDID; ++i) {
1071 if (hasProperty(i))
1072 return true;
1073 }
1074 return false;
1075}
1076
1077/*!
1078 Returns whether the hidden protection property is set to true.

Callers 3

addXfFormatMethod · 0.80
writeCellXfsMethod · 0.80
writeDxfMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected