using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; using System.Windows.Forms; using System.Drawing.Design; using FastReport.Design; using FastReport.TypeConverters; using FastReport.Data; using FastReport.TypeEditors; using FastReport.Utils; using FastReport.Design.PageDesigners.Page; using System.Drawing; namespace FastReport.Table { partial class TableRow { #region Properties /// /// This property is not relevant to this class. /// [Browsable(false)] public override float Left { get { return base.Left; } set { base.Left = value; } } /// /// This property is not relevant to this class. /// [Browsable(false)] public override float Width { get { return base.Width; } set { base.Width = value; } } /// /// This property is not relevant to this class. /// [Browsable(false)] public override DockStyle Dock { get { return base.Dock; } set { base.Dock = value; } } /// /// This property is not relevant to this class. /// [Browsable(false)] public override AnchorStyles Anchor { get { return base.Anchor; } set { base.Anchor = value; } } #endregion #region Protected Methods /// protected override SelectionPoint[] GetSelectionPoints() { return new SelectionPoint[] { }; } #endregion #region Public Methods /// public override ContextMenuBase GetContextMenu() { return (Parent as TableBase).GetRowContextMenu(this); } /// public override void SelectionChanged() { base.SelectionChanged(); if (Parent != null) Parent.SelectionChanged(); } #endregion } }