Sets the Integer Value of a Property (for a given index)
| 108 | |
| 109 | // Sets the Integer Value of a Property (for a given index) |
| 110 | inline void SetInt(const int32_t n, const size_t nItem = 0) |
| 111 | { |
| 112 | SetString(std::to_string(n), nItem); |
| 113 | } |
| 114 | |
| 115 | // Returns the number of Values a property consists of |
| 116 | inline size_t GetValueCount() const |
nothing calls this directly
no outgoing calls
no test coverage detected