다음을 통해 공유


CComControl::FireOnChanged

컨테이너의 싱크를 컨트롤 속성이 변경 되었음을 알립니다.

HRESULT FireOnChanged(
   DISPID dispID 
);

매개 변수

  • dispID
    [in] 변경 된 속성의 식별자입니다.

반환 값

HRESULT 값 중 하나입니다.

설명

컨트롤 클래스에서 파생 되는 경우 IPropertyNotifySink,이 메서드를 호출 CFirePropNotifyEvent::FireOnChanged 모든 알림 연결 IPropertyNotifySink 인터페이스는 지정 된 컨트롤 속성을 변경 합니다.사용자 컨트롤 클래스에서 파생 되지 않는 경우 IPropertyNotifySink,이 메서드를 반환 합니다. S_OK.

이 메서드는 컨트롤이 연결 지점을 지원 하지 않는 경우에 호출할 수 있습니다.

예제

STDMETHODIMP CMyControl::put_MyText(BSTR newVal)
{
   // store newVal in CComBstr member
   m_bstrMyText = newVal;

   // note the DISPID for the MyText property is 3 in this example
   FireOnChanged(3);

   return S_OK;
}

요구 사항

헤더: atlctl.h

참고 항목

참조

CComControl 클래스

CComControl::FireOnRequestEdit