DDP_LBStringExact

 

Call this function in your property page's DoDataExchange function to synchronize the value of a string property that exactly matches the current selection in a list box on the property page.

Syntax

      void AFXAPI DDP_LBStringExact(
   CDataExchange* pDX,
   int id,
   CString& member,
   LPCTSTR pszPropName 
);

Parameters

  • pDX
    Pointer to a CDataExchange object. The framework supplies this object to establish the context of the data exchange, including its direction.

  • id
    The resource ID of the list box control associated with the control property specified by pszPropName.

  • member
    The member variable associated with the property page control specified by id and the property specified by pszPropName.

  • pszPropName
    The property name of the control property to be exchanged with the list box string specified by id.

Remarks

This function should be called before the corresponding DDX_LBStringExact function call.

Requirements

Header: afxctl.h

See Also

MFC Macros and Globals
DDP_LBString
DDP_LBIndex
COleControl::DoPropExchange
DDX_LBStringExact