CComControl::FireOnChanged
通知接收控制項容器的屬性已變更。
HRESULT FireOnChanged(
DISPID dispID
);
參數
- dispID
[in] 已變更之屬性的識別項。
傳回值
其中一個標準的 HRESULT 值。
備註
如果您的控制項類別 IPropertyNotifySink從衍生自類別,這個方法呼叫會通知所有連接的 IPropertyNotifySink 介面的 CFirePropNotifyEvent::FireOnChanged 指定控制項的屬性已變更。如果您的控制項類別從 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;
}
需求
Header: atlctl.h