Browse Source

Add detail to this property's XmlDoc

Brandon Thetford 1 year ago
parent
commit
f57ec92b15
1 changed files with 10 additions and 2 deletions
  1. 10 2
      Terminal.Gui/View/ViewSubViews.cs

+ 10 - 2
Terminal.Gui/View/ViewSubViews.cs

@@ -1,4 +1,4 @@
-namespace Terminal.Gui;
+namespace Terminal.Gui;
 
 public partial class View
 {
@@ -358,7 +358,15 @@ public partial class View
 
     private bool _oldCanFocus;
 
-    /// <inheritdoc/>
+    /// <summary>Gets or sets a value indicating whether this <see cref="View"/> can focus.</summary>
+    /// <remarks>
+    ///     Override of <see cref="Responder"/>.<see cref="Responder.CanFocus"/>.
+    ///     <para/>
+    ///     Get accessor directly returns <see cref="Responder"/>.<see cref="Responder.CanFocus"/>.
+    ///     <para/>
+    ///     Set accessor validates <see langword="value"/> before setting <see cref="Responder"/>.
+    ///     <see cref="Responder.CanFocus"/>.
+    /// </remarks>
     public override bool CanFocus
     {
         get => base.CanFocus;