Browse Source
Merge pull request #3447 from rstm-sf/doc/fix_typo_color_prop
Fix typo in the doc for Color properties
try-fix-3336
Dariusz Komosiński
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
src/Avalonia.Visuals/Media/Color.cs
|
|
|
@ -19,22 +19,22 @@ namespace Avalonia.Media |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Alpha component of the color.
|
|
|
|
/// Gets the Alpha component of the color.
|
|
|
|
/// </summary>
|
|
|
|
public byte A { get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Red component of the color.
|
|
|
|
/// Gets the Red component of the color.
|
|
|
|
/// </summary>
|
|
|
|
public byte R { get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Green component of the color.
|
|
|
|
/// Gets the Green component of the color.
|
|
|
|
/// </summary>
|
|
|
|
public byte G { get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Blue component of the color.
|
|
|
|
/// Gets the Blue component of the color.
|
|
|
|
/// </summary>
|
|
|
|
public byte B { get; } |
|
|
|
|
|
|
|
|