MFC
TRY
Expand Minimize
This topic has not yet been rated - Rate this topic

PX_Long

Call this function within your control's DoPropExchange member function to serialize or initialize a property of type long.

BOOL PX_Long( 
   CPropExchange* pPX, 
   LPCTSTR pszPropName, 
   long& lValue  
); 
BOOL PX_Long( 
   CPropExchange* pPX, 
   LPCTSTR pszPropName, 
   long& lValue, 
   long lDefault  
);
pPX

Pointer to the CPropExchange object (typically passed as a parameter to DoPropExchange).

pszPropName

The name of the property being exchanged.

lValue

Reference to the variable where the property is stored (typically a member variable of your class).

lDefault

Default value for the property.

Nonzero if the exchange was successful; 0 if unsuccessful.

The property's value is read from or written to the variable referenced by lValue, as appropriate. If lDefault is specified, it will be used as the property's default value. This value is used if, for any reason, the control's serialization process fails.

Header: afxctl.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.