PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Scenes/UserInterfaces/Designs/IBorderedDesign.cs

#
C# | 23 lines | 13 code | 0 blank | 10 comment | 0 complexity | 946f354b73c530f11a2493fd44901fb7 MD5 | raw file
Possible License(s): Apache-2.0
  1. namespace Delta.Scenes.UserInterfaces.Designs
  2. {
  3. /// <summary>
  4. /// IBordered design
  5. /// </summary>
  6. public interface IBorderedDesign
  7. {
  8. #region BorderWidth (Public)
  9. /// <summary>
  10. /// The width of the border which will be used for drawing the control.
  11. /// </summary>
  12. /// <value>
  13. /// The width of the border.
  14. /// </value>
  15. /// <returns>Float</returns>
  16. float BorderWidth
  17. {
  18. get;
  19. set;
  20. }
  21. #endregion
  22. }
  23. }