Get box by ID Box ID Box
| 185 | /// <param name="id">Box ID</param> |
| 186 | /// <returns>Box</returns> |
| 187 | Box* GetBox(int32 id) |
| 188 | { |
| 189 | ASSERT(Boxes.HasItems() && Boxes.Count() > id && Boxes[id].ID == id && Boxes[id].Parent == this); |
| 190 | return &Boxes[id]; |
| 191 | } |
| 192 | |
| 193 | /// <summary> |
| 194 | /// Get box by ID, returns null if missing. |
no test coverage detected