| 152 | //! Get item data from specified position |
| 153 | template<typename ValueType> |
| 154 | ValueType* getColumnDataAt(size_t _index, bool _throw = true) |
| 155 | { |
| 156 | MYGUI_ASSERT_RANGE(_index, mVectorColumnInfo.size(), "MultiListBox::getItemDataAt"); |
| 157 | return mVectorColumnInfo[_index].data.castType<ValueType>(_throw); |
| 158 | } |
| 159 | |
| 160 | //------------------------------------------------------------------------------// |
| 161 | // Methods for work with lines (RU:методы для работы со строками) |