DDP_PostProcessing
Visual Studio .NET 2003
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 );
Parameters
- pDX
- Pointer to a CDataExchange object. The framework supplies this object to establish the context of the data exchange, including its direction.
Remarks
This function should be called after all data exchange functions are completed. For example:
void CSamplePage::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);
}