! \internal Return true if the format has border format, otherwise return false. */
| 942 | Return true if the format has border format, otherwise return false. |
| 943 | */ |
| 944 | bool 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. |
no outgoing calls
no test coverage detected