/Scenes/UserInterfaces/Designs/IBorderedDesign.cs
# · C# · 23 lines · 13 code · 0 blank · 10 comment · 0 complexity · 946f354b73c530f11a2493fd44901fb7 MD5 · raw file
- namespace Delta.Scenes.UserInterfaces.Designs
- {
- /// <summary>
- /// IBordered design
- /// </summary>
- public interface IBorderedDesign
- {
- #region BorderWidth (Public)
- /// <summary>
- /// The width of the border which will be used for drawing the control.
- /// </summary>
- /// <value>
- /// The width of the border.
- /// </value>
- /// <returns>Float</returns>
- float BorderWidth
- {
- get;
- set;
- }
- #endregion
- }
- }