public Rectangle GetTextBounds(NuGenBoundsParams textBoundsParams) { Assert.IsNotNull(textBoundsParams); return Rectangle.Empty; }
public Rectangle GetRadioButtonBounds(NuGenBoundsParams radioBoundsParams) { Assert.IsNotNull(radioBoundsParams); return Rectangle.Empty; }
/// <summary> /// </summary> public Rectangle GetRadioButtonBounds(NuGenBoundsParams radioBoundsParams) { return base.GetImageBounds(radioBoundsParams); }
/// <summary> /// </summary> public Rectangle GetCheckBoxBounds(NuGenBoundsParams checkBoundsParams) { return this.GetImageBounds(checkBoundsParams); }
/// <summary> /// </summary> public new Rectangle GetTextBounds(NuGenBoundsParams textBoundsParams) { Rectangle textBounds = base.GetTextBounds(textBoundsParams); return Rectangle.Inflate(textBounds, -_textOffset, 0); }