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


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

--

Legend:

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

    v13 v14  
    248248
    249249
     250=== !SetLeftToRightOfRect ===
     251Sets left to the right of specified rectangle
     252
     253{{{#!c++
     254void SetLeftToRightOfRect(CFormRect& r, int addPixels = 0)
     255}}}
     256
     257==== Parameters ====
     258 * r - CFormRect reference
     259 * addPixels - additional pixel value to add to the left coordinate
     260
     261==== Return Value ====
     262
     263Function does not return a value.
     264
     265
     266
     267
     268=== !SetTopSameAsRect ===
     269Sets top of rectangle same as specified rectangle
     270
     271{{{#!c++
     272void SetTopSameAsRect(CFormRect& r, int addPixels = 0)
     273}}}
     274
     275==== Parameters ====
     276 * r - CFormRect reference
     277 * addPixels - additional pixel value to add to the top coordinate
     278
     279==== Return Value ====
     280
     281Function does not return a value.
     282
     283
     284
     285=== !SetLocationAndSizeFrom ===
     286Sets location and size of rectangle based on two specified rectangles
     287
     288{{{#!c++
     289void SetLocationAndSizeFrom(CFormRect& upperLeft, CFormRect& lowerRight)
     290}}}
     291
     292==== Parameters ====
     293 * upperLeft - CFormRect reference for upper left coordinate
     294 * lowerRight - CFormRect reference for lower right coordinate
     295
     296==== Return Value ====
     297
     298Function does not return a value.