MaskedTextProvider.GetOperationResultFromHint(MaskedTextResultHint) Método
Definição
Determina se o MaskedTextResultHint especificado indica êxito ou falha.Determines whether the specified MaskedTextResultHint denotes success or failure.
public:
static bool GetOperationResultFromHint(System::ComponentModel::MaskedTextResultHint hint);
public static bool GetOperationResultFromHint (System.ComponentModel.MaskedTextResultHint hint);
static member GetOperationResultFromHint : System.ComponentModel.MaskedTextResultHint -> bool
Public Shared Function GetOperationResultFromHint (hint As MaskedTextResultHint) As Boolean
Parâmetros
- hint
- MaskedTextResultHint
Um valor MaskedTextResultHint, normalmente obtido como um parâmetro de saída de uma operação anterior.A MaskedTextResultHint value typically obtained as an output parameter from a previous operation.
Retornos
true se o valor MaskedTextResultHint especificado representa um êxito; false, se ele representa falha.true if the specified MaskedTextResultHint value represents a success; otherwise, false if it represents failure.
Comentários
Os métodos a seguir da MaskedTextProvider classe contêm um parâmetro do tipo MaskedTextResultHint que é usado para gerar informações sobre a operação do método:,,,,,,, Add Clear InsertAt Remove RemoveAt Replace Set VerifyChar e VerifyString .The following methods of the MaskedTextProvider class contain a parameter of type MaskedTextResultHint that is used to output information about the operation of the method: Add, Clear, InsertAt, Remove, RemoveAt, Replace, Set, VerifyChar, and VerifyString. O GetOperationResultFromHint método interpreta esse valor e retorna um valor booliano que indica se o MaskedTextResultHint sinalizou que a operação foi um êxito ou falha.The GetOperationResultFromHint method interprets this value and returns a Boolean value that indicates whether the MaskedTextResultHint has signaled that the operation was a success or failure.