12345678910111213141516171819 |
- using System.Windows.Forms;
- using FastReport.Utils;
- namespace FastReport.Dialog
- {
- partial class RadioButtonControl
- {
- #region Protected Methods
- /// <inheritdoc/>
- protected override SelectionPoint[] GetSelectionPoints()
- {
- if (RadioButton.AutoSize)
- return new SelectionPoint[] { new SelectionPoint(AbsLeft - 2, AbsTop - 2, SizingPoint.None) };
- return base.GetSelectionPoints();
- }
- #endregion
- }
- }
|