Search Results for

    Show / Hide Table of Contents

    Class TableRow

    Represents a table row.

    Inheritance
    System.Object
    Base
    ComponentBase
    TableRow
    Implements
    IFRSerializable
    IParent
    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.Left
    ComponentBase.Right
    ComponentBase.Tag
    ComponentBase.Visible
    ComponentBase.VisibleExpression
    ComponentBase.Printable
    ComponentBase.PrintableExpression
    ComponentBase.Width
    ComponentBase.GetExpressions()
    ComponentBase.CalcVisibleExpression(String)
    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.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)
    Namespace: FastReport.Table
    Assembly: FastReport.Base.dll
    Syntax
    public class TableRow : ComponentBase, IDisposable, IFRSerializable, IParent
    Remarks

    Use the Height property to set the height of a row. If AutoSize property is true, the row will calculate its height automatically.

    You can also set the MinHeight and MaxHeight properties to restrict the row's height.

    Constructors

    TableRow()

    Initializes a new instance of the TableRow class.

    Declaration
    public TableRow()

    Properties

    AutoSize

    Gets or sets a value determines if the row should calculate its height automatically.

    Declaration
    public bool AutoSize { get; set; }
    Property Value
    Type Description
    System.Boolean
    Remarks

    The row height cannot exceed the range defined by the MinHeight and MaxHeight properties.

    CanBreak

    Gets or sets a value that determines if the component can break its contents across pages.

    Declaration
    public bool CanBreak { get; set; }
    Property Value
    Type Description
    System.Boolean

    Height

    Gets or sets a height of the row, in pixels.

    Declaration
    public override float Height { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Height
    Remarks

    The row height cannot exceed the range defined by the MinHeight and MaxHeight properties.

    note

    To convert between pixels and report units, use the constants defined in the Units class.

    Index

    Gets the index of this row.

    Declaration
    public int Index { get; }
    Property Value
    Type Description
    System.Int32

    Item[Int32]

    Gets or sets the cell with specified index.

    Declaration
    public TableCell this[int col] { get; set; }
    Parameters
    Type Name Description
    System.Int32 col

    Column index.

    Property Value
    Type Description
    TableCell

    The TableCell object.

    KeepRows

    Gets or sets the number of rows to keep on the same page.

    Declaration
    public int KeepRows { get; set; }
    Property Value
    Type Description
    System.Int32

    MaxHeight

    Gets or sets the maximal height for this row, in pixels.

    Declaration
    public float MaxHeight { get; set; }
    Property Value
    Type Description
    System.Single

    MinHeight

    Gets or sets the minimal height for this row, in pixels.

    Declaration
    public float MinHeight { get; set; }
    Property Value
    Type Description
    System.Single

    PageBreak

    Gets or sets the page break flag for this row.

    Declaration
    public bool PageBreak { get; set; }
    Property Value
    Type Description
    System.Boolean

    Top

    Declaration
    public override float Top { get; set; }
    Property Value
    Type Description
    System.Single
    Overrides
    ComponentBase.Top

    Methods

    AddChild(Base)

    Declaration
    public void AddChild(Base child)
    Parameters
    Type Name Description
    Base child

    Assign(Base)

    Declaration
    public override void Assign(Base source)
    Parameters
    Type Name Description
    Base source
    Overrides
    ComponentBase.Assign(Base)

    CanContain(Base)

    Declaration
    public bool CanContain(Base child)
    Parameters
    Type Name Description
    Base child
    Returns
    Type Description
    System.Boolean

    CellData(Int32)

    Declaration
    public TableCellData CellData(int col)
    Parameters
    Type Name Description
    System.Int32 col
    Returns
    Type Description
    TableCellData

    Clear()

    Declaration
    public override void Clear()
    Overrides
    Base.Clear()

    GetChildObjects(ObjectCollection)

    Declaration
    public void GetChildObjects(ObjectCollection list)
    Parameters
    Type Name Description
    ObjectCollection list

    GetChildOrder(Base)

    Declaration
    public int GetChildOrder(Base child)
    Parameters
    Type Name Description
    Base child
    Returns
    Type Description
    System.Int32

    RemoveChild(Base)

    Declaration
    public void RemoveChild(Base child)
    Parameters
    Type Name Description
    Base child

    Serialize(FRWriter)

    Declaration
    public override void Serialize(FRWriter writer)
    Parameters
    Type Name Description
    FRWriter writer
    Overrides
    ComponentBase.Serialize(FRWriter)

    SetChildOrder(Base, Int32)

    Declaration
    public void SetChildOrder(Base child, int order)
    Parameters
    Type Name Description
    Base child
    System.Int32 order

    UpdateLayout(Single, Single)

    Declaration
    public void UpdateLayout(float dx, float dy)
    Parameters
    Type Name Description
    System.Single dx
    System.Single dy

    Implements

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