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

Method hasBorderData

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

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

Source from the content-addressed store, hash-verified

942 Return true if the format has border format, otherwise return false.
943 */
944bool Format::hasBorderData() const
945{
946 if (!d)
947 return false;
948
949 for (int i=FormatPrivate::P_Border_STARTID; i<FormatPrivate::P_Border_ENDID; ++i) {
950 if (hasProperty(i))
951 return true;
952 }
953 return false;
954}
955
956/*!
957 Return the fill pattern.

Callers 3

addXfFormatMethod · 0.80
writeCellXfsMethod · 0.80
writeDxfMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected