API:Data.Bind.Components.TContainedBindComponent.GetParentComponent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetParentComponent: TComponent; override;

C++

DYNAMIC System::Classes::TComponent* __fastcall GetParentComponent();

Properties

Type Visibility Source Unit Parent
function public
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components TContainedBindComponent

Description

Returns the containing component.

Data.Bind.Components.TContainedBindComponent.GetParentComponent inherits from System.Classes.TComponent.GetParentComponent. All content below this line refers to System.Classes.TComponent.GetParentComponent.

Returns the containing component.

GetParentComponent returns a reference to the component that contains the current component, or nil if there is no container. Use HasParent to determine whether a component has a containing component.

For example, a button on a panel on a form returns the panel, the panel returns the form, and the form returns nil.

See Also