Class DialogComponentBase
Base class for all dialog components.
Implements
Inherited Members
Namespace: FastReport.Dialog
Assembly: FastReport.dll
Syntax
public abstract class DialogComponentBase : ComponentBase, IDisposable, IFRSerializable
Constructors
DialogComponentBase()
Initializes a new instance of the DialogComponentBase class with default settings.
Declaration
public DialogComponentBase()
Properties
Location
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
Declaration
public Point Location { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Point |
Size
Gets or sets the height and width of the control.
Declaration
public Size Size { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Size |
Methods
Assign(Base)
Copies the contents of another, similar object.
Declaration
public override void Assign(Base source)
Parameters
Type | Name | Description |
---|---|---|
Base | source | Source object to copy the contents from. |
Overrides
Remarks
Call Assign to copy the properties from another object of the same type. The standard form of a call to Assign is
destination.Assign(source);
which tells the destination object to copy the contents of the source object to itself. In this method, all child objects are ignored. If you want to copy child objects, use the AssignAll method.