Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormAdvanceY


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

--

Legend:

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

    v1 v2  
    1818== Member Functions ==
    1919
    20 === SetX ===
    21 Sets X coordinate
     20=== SetBasedOnFont ===
     21Sets advance amount based on a font height
    2222
    2323{{{#!c++
    24 void SetX(int x);
     24void SetBasedOnFont(CFont& font, double multiplier, int addPixels = 0);
    2525}}}
    2626
    2727==== Parameters ====
    28  * x - X coordinate
     28 * font - CFont reference
     29 * multiplier - multiplier value for height to set the advance amount
    2930
    3031==== Return Value ====
     
    3233Function does not return a value.
    3334
    34 === SetY ===
    35 Sets Y coordinate
    36 
    37 {{{#!c++
    38 void SetY(int y);
    39 }}}
    40 
    41 ==== Parameters ====
    42  * y - Y coordinate
    43 
    44 ==== Return Value ====
    45 
    46 Function does not return a value.
    47 
    48 === !SetWidth ===
    49 Sets width of the rectangle
    50 
    51 {{{#!c++
    52 void SetWidth(int width);
    53 }}}