Changes between Version 12 and Version 13 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormRect


Ignore:
Timestamp:
03/12/25 15:09:09 (4 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormRect

    v12 v13  
    192192Function does not return a value.
    193193
    194 === !SetLeftBasedOnDspArea ===
    195 Sets left of rectangle based on a CDspArea
    196 
    197 {{{#!c++
    198 void SetLeftBasedOnDspArea(CDspArea* pDspArea, double leftMultiplier)
    199 }}}
    200 
    201 ==== Parameters ====
    202  * pDspArea - pointer to CDspArea
    203  * leftMultiplier - value for multiplication of dspArea width
    204 
    205 ==== Return Value ====
    206 
    207 Function does not return a value.
    208194
    209195=== !SetWidthBasedOnFontStrWidth ===
     
    226212
    227213Function does not return a value.
     214
     215
     216=== !SetLeftBasedOnDspArea ===
     217Sets left of rectangle based on a CDspArea
     218
     219{{{#!c++
     220void 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
     229Function does not return a value.
     230
     231
     232
     233=== !SetLeftAndWidthBasedOnDspArea ===
     234Sets left and width of rectangle based on a CDspArea
     235
     236{{{#!c++
     237void 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
     247Function does not return a value.
     248
     249