Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormAdvanceY
- Timestamp:
- 03/12/25 15:18:55 (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormAdvanceY
v1 v1 1 = CFormAdvanceY **825gen2** = 2 3 Class for specifying a Y coordinate advance value for CFormRect 4 5 == Constructors == 6 7 {{{#!c++ 8 CFormAdvanceY(void); 9 }}} 10 11 12 ==== Example ==== 13 14 {{{#!c++ 15 CFormAdvanceY advY; 16 }}} 17 18 == Member Functions == 19 20 === SetX === 21 Sets X coordinate 22 23 {{{#!c++ 24 void SetX(int x); 25 }}} 26 27 ==== Parameters ==== 28 * x - X coordinate 29 30 ==== Return Value ==== 31 32 Function does not return a value. 33 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 }}}