! Sets the inset placement type of the element with the specified \a index to \a placement. \see InsetPlacement */
| 4920 | \see InsetPlacement |
| 4921 | */ |
| 4922 | void QCPLayoutInset::setInsetPlacement(int index, QCPLayoutInset::InsetPlacement placement) |
| 4923 | { |
| 4924 | if (elementAt(index)) |
| 4925 | mInsetPlacement[index] = placement; |
| 4926 | else |
| 4927 | qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; |
| 4928 | } |
| 4929 | |
| 4930 | /*! |
| 4931 | If the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned, this function |
nothing calls this directly
no outgoing calls
no test coverage detected