FastReport.Net.Demo by Fast Reports Inc.

<PackageReference Include="FastReport.Net.Demo" Version="2022.2.5" />

.NET API 15,777,792 bytes

 IParent

public interface IParent
Implement this interface if your object can contain list of child objects.
void AddChild(Base child)

Adds a child object to this object's childs.

bool CanContain(Base child)

Gets a value indicating that this object can contain the specified child object.

Gets a list of child objects.

int GetChildOrder(Base child)

Returns z-order of the specified child object.

void RemoveChild(Base child)

Removes a specified object from this object's childs.

void SetChildOrder(Base child, int order)

Sets the z-order of the specified object.

void UpdateLayout(float dx, float dy)

Updates the children layout when the size of this object is changed by dx, dy values.