Skip to content

Commit 0c21a20

Browse files
committed
Inherit documentation from base class
1 parent 395482f commit 0c21a20

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Blish HUD/Controls/TextBox.cs

+6
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,17 @@ public bool HideBackground {
3838
set => SetProperty(ref _hideBackground, value);
3939
}
4040

41+
/// <summary>
42+
/// <inheritdoc cref="TextInputBase._masked"/>
43+
/// </summary>
4144
public bool Masked {
4245
get => _masked;
4346
set => SetProperty(ref _masked, value, true);
4447
}
4548

49+
/// <summary>
50+
/// <inheritdoc cref="TextInputBase._maskingChar"/>
51+
/// </summary>
4652
public char MaskingChar {
4753
get => _maskingChar;
4854
set => SetProperty(ref _maskingChar, value, true);

0 commit comments

Comments
 (0)