Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormAdvanceY
- Timestamp:
- 03/12/25 15:20:48 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormAdvanceY
v1 v2 18 18 == Member Functions == 19 19 20 === Set X===21 Sets X coordinate20 === SetBasedOnFont === 21 Sets advance amount based on a font height 22 22 23 23 {{{#!c++ 24 void Set X(int x);24 void SetBasedOnFont(CFont& font, double multiplier, int addPixels = 0); 25 25 }}} 26 26 27 27 ==== Parameters ==== 28 * x - X coordinate 28 * font - CFont reference 29 * multiplier - multiplier value for height to set the advance amount 29 30 30 31 ==== Return Value ==== … … 32 33 Function does not return a value. 33 34 34 === SetY ===35 Sets Y coordinate36 37 {{{#!c++38 void SetY(int y);39 }}}40 41 ==== Parameters ====42 * y - Y coordinate43 44 ==== Return Value ====45 46 Function does not return a value.47 48 === !SetWidth ===49 Sets width of the rectangle50 51 {{{#!c++52 void SetWidth(int width);53 }}}