| 250 | === !SetLeftToRightOfRect === |
| 251 | Sets left to the right of specified rectangle |
| 252 | |
| 253 | {{{#!c++ |
| 254 | void SetLeftToRightOfRect(CFormRect& r, int addPixels = 0) |
| 255 | }}} |
| 256 | |
| 257 | ==== Parameters ==== |
| 258 | * r - CFormRect reference |
| 259 | * addPixels - additional pixel value to add to the left coordinate |
| 260 | |
| 261 | ==== Return Value ==== |
| 262 | |
| 263 | Function does not return a value. |
| 264 | |
| 265 | |
| 266 | |
| 267 | |
| 268 | === !SetTopSameAsRect === |
| 269 | Sets top of rectangle same as specified rectangle |
| 270 | |
| 271 | {{{#!c++ |
| 272 | void SetTopSameAsRect(CFormRect& r, int addPixels = 0) |
| 273 | }}} |
| 274 | |
| 275 | ==== Parameters ==== |
| 276 | * r - CFormRect reference |
| 277 | * addPixels - additional pixel value to add to the top coordinate |
| 278 | |
| 279 | ==== Return Value ==== |
| 280 | |
| 281 | Function does not return a value. |
| 282 | |
| 283 | |
| 284 | |
| 285 | === !SetLocationAndSizeFrom === |
| 286 | Sets location and size of rectangle based on two specified rectangles |
| 287 | |
| 288 | {{{#!c++ |
| 289 | void SetLocationAndSizeFrom(CFormRect& upperLeft, CFormRect& lowerRight) |
| 290 | }}} |
| 291 | |
| 292 | ==== Parameters ==== |
| 293 | * upperLeft - CFormRect reference for upper left coordinate |
| 294 | * lowerRight - CFormRect reference for lower right coordinate |
| 295 | |
| 296 | ==== Return Value ==== |
| 297 | |
| 298 | Function does not return a value. |