| | 214 | |
| | 215 | |
| | 216 | === !SetLeftBasedOnDspArea === |
| | 217 | Sets left of rectangle based on a CDspArea |
| | 218 | |
| | 219 | {{{#!c++ |
| | 220 | void SetLeftBasedOnDspArea(CDspArea* pDspArea, double leftMultiplier) |
| | 221 | }}} |
| | 222 | |
| | 223 | ==== Parameters ==== |
| | 224 | * pDspArea - pointer to CDspArea |
| | 225 | * leftMultiplier - value for multiplication of dspArea width |
| | 226 | |
| | 227 | ==== Return Value ==== |
| | 228 | |
| | 229 | Function does not return a value. |
| | 230 | |
| | 231 | |
| | 232 | |
| | 233 | === !SetLeftAndWidthBasedOnDspArea === |
| | 234 | Sets left and width of rectangle based on a CDspArea |
| | 235 | |
| | 236 | {{{#!c++ |
| | 237 | void SetLeftAndWidthBasedOnDspArea(CDspArea* pDspArea, double leftMultiplier, double widthMultiplier) |
| | 238 | }}} |
| | 239 | |
| | 240 | ==== Parameters ==== |
| | 241 | * pDspArea - pointer to CDspArea |
| | 242 | * leftMultiplier - value for multiplication of dspArea width |
| | 243 | * widthMultiplier - value for multiplication of dspArea width |
| | 244 | |
| | 245 | ==== Return Value ==== |
| | 246 | |
| | 247 | Function does not return a value. |
| | 248 | |
| | 249 | |