DataSelectorControl.DesignExt.cs 700 B

123456789101112131415161718192021222324252627282930
  1. using System.ComponentModel;
  2. namespace FastReport.Dialog
  3. {
  4. partial class DataSelectorControl
  5. {
  6. #region Properties
  7. /// <summary>
  8. /// This property is not relevant to this class.
  9. /// </summary>
  10. [Browsable(false)]
  11. public new bool AutoFill
  12. {
  13. get { return base.AutoFill; }
  14. set { base.AutoFill = value; }
  15. }
  16. /// <summary>
  17. /// This property is not relevant to this class.
  18. /// </summary>
  19. [Browsable(false)]
  20. public new bool AutoFilter
  21. {
  22. get { return base.AutoFilter; }
  23. set { base.AutoFilter = value; }
  24. }
  25. #endregion
  26. }
  27. }