Search Results for

    Show / Hide Table of Contents

    Class DialogComponentBase

    Base class for all dialog components.

    Inheritance
    System.Object
    Base
    ComponentBase
    DialogComponentBase
    DialogControl
    Implements
    IFRSerializable
    Inherited Members
    ComponentBase.AbsBottom
    ComponentBase.AbsBounds
    ComponentBase.AbsLeft
    ComponentBase.AbsRight
    ComponentBase.AbsTop
    ComponentBase.Anchor
    ComponentBase.Bottom
    ComponentBase.Bounds
    ComponentBase.ClientSize
    ComponentBase.Dock
    ComponentBase.GroupIndex
    ComponentBase.Right
    ComponentBase.Tag
    ComponentBase.Visible
    ComponentBase.VisibleExpression
    ComponentBase.Printable
    ComponentBase.PrintableExpression
    ComponentBase.Serialize(FRWriter)
    ComponentBase.GetExpressions()
    ComponentBase.CalcVisibleExpression(String)
    FastReport.ComponentBase.CheckNegativeSize(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.CheckParent(System.Boolean)
    FastReport.ComponentBase.Draw(FastReport.Utils.FRPaintEventArgs)
    FastReport.ComponentBase.DrawDragAcceptFrame(FastReport.Utils.FRPaintEventArgs, System.Drawing.Color)
    FastReport.ComponentBase.DrawSelection(FastReport.Utils.FRPaintEventArgs)
    FastReport.ComponentBase.GetPreferredSize()
    FastReport.ComponentBase.GetSmartTag()
    FastReport.ComponentBase.HandleDoubleClick()
    FastReport.ComponentBase.HandleDragDrop(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleDragOver(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleKeyDown(System.Windows.Forms.Control, System.Windows.Forms.KeyEventArgs)
    FastReport.ComponentBase.HandleMouseDown(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleMouseHover(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleMouseMove(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleMouseUp(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.HandleMouseWheel(FastReport.Utils.FRMouseEventArgs)
    FastReport.ComponentBase.PointInObject(System.Drawing.PointF)
    FastReport.ComponentBase.DrawSelectionPoint(FastReport.Utils.FRPaintEventArgs, System.Drawing.Pen, System.Drawing.Brush, System.Single, System.Single)
    FastReport.ComponentBase.GetSelectionPoints()
    FastReport.ComponentBase.PointInSelectionPoint(System.Single, System.Single, System.Drawing.PointF)
    Base.Name
    Base.Restrictions
    Base.Flags
    Base.Parent
    Base.BaseName
    Base.ClassName
    Base.Report
    Base.Page
    Base.ChildObjects
    Base.AllObjects
    Base.ZOrder
    Base.IsAncestor
    Base.IsDesigning
    Base.IsPrinting
    Base.IsRunning
    Base.OriginalComponent
    Base.Disposed
    Base.SetProp(Base, Base)
    Base.FloatDiff(Single, Single)
    Base.DeserializeSubItems(FRReader)
    Base.ExtractDefaultMacros(String)
    Base.Dispose(Boolean)
    Base.Dispose()
    Base.SetFlags(Flags, Boolean)
    Base.SetReport(Report)
    Base.SetName(String)
    Base.SetParent(Base)
    Base.SetParentCore(Base)
    Base.FindObject(String)
    Base.CreateUniqueName()
    Base.Clear()
    Base.Deserialize(FRReader)
    Base.BaseAssign(Base)
    Base.AssignAll(Base)
    Base.HasParent(Base)
    Base.HasFlag(Flags)
    Base.HasRestriction(Restrictions)
    Base.InvokeEvent(String, Object)
    Base.OnAfterLoad()
    Base.GetCustomScript()
    Base.ExtractMacros()
    Base.IsHaveToConvert(Object)
    Base.GetConvertedObjects()
    Base.ForEachAllConvectedObjects(Object)
    FastReport.Base.IsSelected
    FastReport.Base.IsParentSelected
    FastReport.Base.Delete()
    FastReport.Base.OnBeforeInsert(System.Int32)
    FastReport.Base.OnAfterInsert(FastReport.InsertFrom)
    FastReport.Base.SelectionChanged()
    FastReport.Base.GetImageIndex()
    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

    Height

    Gets or sets the height of the object.

    Declaration
    [Browsable(false)]
    public override float Height { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Height
    Remarks

    This property value is measured in the screen pixels. Use Units class to convert a value to desired units.

    Left

    Gets or sets the left coordinate of the object in relation to its container.

    Declaration
    [Browsable(false)]
    public override float Left { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Left
    Remarks

    This property value is measured in the screen pixels. Use Units class to convert a value to desired units.

    To obtain absolute coordinate, use AbsLeft property.

    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

    Top

    Gets or sets the top coordinate of the object in relation to its container.

    Declaration
    [Browsable(false)]
    public override float Top { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Top
    Remarks

    This property value is measured in the screen pixels. Use Units class to convert a value to desired units.

    To obtain absolute coordinate, use AbsTop property.

    Width

    Gets or sets the width of the object.

    Declaration
    [Browsable(false)]
    public override float Width { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Width
    Remarks

    This property value is measured in the screen pixels. Use Units class to convert a value to desired units.

    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
    ComponentBase.Assign(Base)
    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.

    See Also
    AssignAll(Base)

    GetContextMenu()

    Gets the object's context menu.

    Declaration
    public override ContextMenuBase GetContextMenu()
    Returns
    Type Description
    ContextMenuBase

    Null reference if object does not have a menu.

    Overrides
    FastReport.ComponentBase.GetContextMenu()
    Remarks

    Do not call this method directly. You may override it if you are developing a new component for FastReport.

    You may use base menu classes such as ComponentBaseMenu, ReportComponentBaseMenu to create own context menus.

    Implements

    IFRSerializable
    Back to top © 1998-2025 Copyright Fast Reports Inc.