#include <usercord.h>
Inheritance diagram for UserCoord:
Public Member Functions | |
UserCoord () | |
UserCoord (INT32 x, INT32 y) | |
DocCoord | ToSpread (Spread *pSpread) |
Definition at line 117 of file usercord.h.
|
Definition at line 120 of file usercord.h. 00120 : Coord() {};
|
|
Definition at line 121 of file usercord.h.
|
|
Definition at line 124 of file usercord.cpp. 00125 { 00126 DocCoord UserOrigin(0,0); 00127 if (pSpread!=NULL) 00128 UserOrigin=pSpread->GetUserOrigin(); 00129 else 00130 ERROR3("UserCoord::ToSpread() - pSpread==NULL"); 00131 00132 return DocCoord(this->x+UserOrigin.x, this->y+UserOrigin.y); 00133 }
|