DDP_PostProcessing

보기 전환:
ScriptFree
Visual Studio 2010 - Visual C++
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 
);
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:

Visual C++

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);
}


Requirements

Header: afxctl.h

See Also

Reference

Concepts