TComponent::RemoveFreeNotification - C++ Builder

C++ Builder 参考手册 ➙ TComponent ➙ RemoveFreeNotification


头文件:#include
命名空间:System::Classes
类:TComponent
访问权限:public:
函数原型:

void __fastcall RemoveFreeNotification(TComponent* AComponent);

System::Classes::TComponent::RemoveFreeNotification 是 System::Classes::TComponent 的成员函数,把 FreeNotification 的通知信息去掉。

参数:

AComponent:把这个组件将要被销毁的信息通知给 AComponent 的信息去掉;

返回值:

无。

  • 把 FreeNotification 的通知信息去掉。
  • 大多数情况应用程序不需要调用这个方法,组件检测到通知循环,比如当两个组件互相通知对方销毁信息的时候,需要去掉不必要的通知信息。

参考:

  • System::Classes::TComponent::RemoveFreeNotifications
  • System::Classes::TComponent::FreeNotification
  • System::Classes::TComponent::Notification
  • System::Classes::TComponent::Owner
  • System::Classes::TComponent
  • System::Classes::TPersistent
  • System::TObject
  • VCL 类继承关系

C++ Builder 参考手册 ➙ TComponent ➙ RemoveFreeNotification

你可能感兴趣的:(TComponent::RemoveFreeNotification - C++ Builder)