Color.IsKnownColor Propriedade
Definição
Obtém um valor que indica se esta estrutura Color é uma cor predefinida.Gets a value indicating whether this Color structure is a predefined color. Cores predefinidas são representadas pelos elementos da enumeração KnownColor.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 da propriedade
true Se isso Color foi criado com base em uma cor predefinida usando o FromName(String) método ou o FromKnownColor(KnownColor) método; caso contrário, 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.
Comentários
Essa propriedade não faz uma comparação dos valores ARGB.This property does not do a comparison of the ARGB values. Portanto, quando a IsKnownColor propriedade é aplicada a uma Color estrutura que é criada usando o FromArgb método, IsKnownColor retorna false , mesmo que o valor ARGB corresponda ao valor ARGB de uma cor predefinida.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.