다음을 통해 공유


PX_Short

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

BOOL PX_Short( 
   CPropExchange* pPX, 
   LPCTSTR pszPropName, 
   short& sValue  
); 
BOOL PX_Short( 
   CPropExchange* pPX, 
   LPCTSTR pszPropName, 
   short& sValue, 
   short sDefault 
);

매개 변수

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

  • pszPropName
    The name of the property being exchanged.

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

  • sDefault
    속성의 기본값입니다.

반환 값

Nonzero if the exchange was successful; 0 if unsuccessful.

설명

The property's value is read from or written to the variable referenced by sValue, as appropriate. If sDefault 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

참고 항목

참조

COleControl::DoPropExchange

개념

MFC 매크로 및 전역