Color.IsKnownColor Propiedad
Definición
Obtiene un valor que indica si esta estructura Color es un color predefinido.Gets a value indicating whether this Color structure is a predefined color. Los elementos de la enumeración KnownColor representan los colores predefinidos.Predefined colors are represented by the elements of the KnownColor enumeration.
public:
property bool IsKnownColor { bool get(); };
public bool IsKnownColor { get; }
member this.IsKnownColor : bool
Public ReadOnly Property IsKnownColor As Boolean
Valor de propiedad
Es true
si esta estructura Color se ha creado a partir de un color predefinido mediante el método FromName(String) o el método FromKnownColor(KnownColor); de lo contrario, es false
.true
if this Color was created from a predefined color by using either the FromName(String) method or the FromKnownColor(KnownColor) method; otherwise, false
.
Comentarios
Esta propiedad no realiza una comparación de los valores ARGB.This property does not do a comparison of the ARGB values. Por lo tanto, cuando la IsKnownColor propiedad se aplica a una Color estructura que se crea mediante el FromArgb método, IsKnownColor devuelve false
, aunque el valor ARGB coincida con el valor ARGB de un color predefinido.Therefore, when the IsKnownColor property is applied to a Color structure that is created by using the FromArgb method, IsKnownColor returns false
, even if the ARGB value matches the ARGB value of a predefined color.