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


Ignore:
Timestamp:
03/12/25 15:18:55 (5 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= CFormAdvanceY **825gen2** =
     2
     3Class for specifying a Y coordinate advance value for CFormRect
     4
     5== Constructors ==
     6
     7{{{#!c++
     8CFormAdvanceY(void);
     9}}}
     10
     11
     12==== Example ====
     13
     14{{{#!c++
     15CFormAdvanceY advY;
     16}}}
     17
     18== Member Functions ==
     19
     20=== SetX ===
     21Sets X coordinate
     22
     23{{{#!c++
     24void SetX(int x);
     25}}}
     26
     27==== Parameters ====
     28 * x - X coordinate
     29
     30==== Return Value ====
     31
     32Function does not return a value.
     33
     34=== SetY ===
     35Sets Y coordinate
     36
     37{{{#!c++
     38void SetY(int y);
     39}}}
     40
     41==== Parameters ====
     42 * y - Y coordinate
     43
     44==== Return Value ====
     45
     46Function does not return a value.
     47
     48=== !SetWidth ===
     49Sets width of the rectangle
     50
     51{{{#!c++
     52void SetWidth(int width);
     53}}}