DDP_PostProcessing
Call this function in your property page's DoDataExchange function, to finish the transfer of property values from the property page to your control when property values are being saved.
void AFXAPI DDP_PostProcessing(
CDataExchange *pDX
);
매개 변수
- pDX
Pointer to a CDataExchange object. The framework supplies this object to establish the context of the data exchange, including its direction.
설명
This function should be called after all data exchange functions are completed. 예를 들면 다음과 같습니다.
void CMyAxPropPage::DoDataExchange(CDataExchange* pDX)
{
DDP_Text(pDX, IDC_POSITIONEDIT, m_NeedlePosition, _T("NeedlePosition"));
DDX_Text(pDX, IDC_POSITIONEDIT, m_NeedlePosition);
DDV_MinMaxInt(pDX, m_NeedlePosition, 0, 3);
DDP_PostProcessing(pDX);
}
요구 사항
Header: afxctl.h