#include <cmxexdc.h>
Inheritance diagram for CMXReferArrowheads:
Public Member Functions | |
CMXReferArrowheads (CMXExportDC *pDC) | |
void | SetArrowheads (WORD StartArrow, WORD EndArrow) |
BOOL | AreYouThisArrowheads (WORD StartArrow, WORD EndArrow) |
INT32 | IsInWhichDesc (void) |
BOOL | WriteInDesc (CMXExportDC *pDC) |
writes the description record for arrowheads | |
Protected Attributes | |
WORD | Start |
WORD | End |
Private Member Functions | |
CC_DECLARE_DYNAMIC (CMXReferArrowheads) |
Definition at line 624 of file cmxexdc.h.
|
Definition at line 629 of file cmxexdc.h. 00629 : CMXReferListItem(pDC) {};
|
|
Definition at line 632 of file cmxexdc.h.
|
|
|
|
Reimplemented from CMXReferListItem. Definition at line 634 of file cmxexdc.h. 00634 {return cmxDESC_ARROWHEADS;};
|
|
Definition at line 631 of file cmxexdc.h.
|
|
writes the description record for arrowheads
Reimplemented from CMXReferListItem. Definition at line 1379 of file cmxdcobj.cpp. 01380 { 01381 struct { 01382 WORD Start,End; 01383 } en = {Start, End}; 01384 01385 return pDC->WriteData(&en, sizeof(en)); 01386 }
|
|
|
|
|