Metodo StringFormat::GetLastStatus (gdiplusstringformat.h)
Il metodo StringFormat::GetLastStatus restituisce un valore che indica la natura dell'errore più recente del metodo di questo oggetto StringFormat .
Sintassi
Status GetLastStatus();
Valore restituito
Tipo: Stato
Il metodo StringFormat::GetLastStatus restituisce un elemento dell'enumerazione Status .
Se nessun metodo richiamato su questo oggetto StringFormat non è riuscito dopo la chiamata precedente a StringFormat::GetLastStatus, StringFormat::GetLastStatus restituisce Ok.
Se almeno un metodo richiamato su questo oggetto StringFormat non è riuscito dopo la chiamata precedente a StringFormat::GetLastStatus, StringFormat::GetLastStatus restituisce un valore che indica la natura dell'errore più recente.
Commenti
È possibile chiamare StringFormat::GetLastStatus immediatamente dopo la costruzione di un oggetto StringFormat per determinare se il costruttore è riuscito.
La prima volta che si chiama il metodo StringFormat::GetLastStatus di un oggetto StringFormat , restituisce Ok se il costruttore ha avuto esito positivo e tutti i metodi richiamati finora sull'oggetto StringFormat hanno avuto esito positivo. In caso contrario, restituisce un valore che indica la natura dell'errore più recente.
Esempio
L'esempio seguente crea un oggetto StringFormat , chiama due metodi StringFormat e quindi controlla lo stato per verificare se si è verificato un errore durante la costruzione o una delle chiamate al metodo.
StringFormat stringFormat;
stringFormat.SetAlignment(StringAlignmentCenter);
HotkeyPrefix hotkeyPrefix = stringFormat.GetHotkeyPrefix();
if (stringFormat.GetLastStatus() == Ok)
{
// There have been no errors since the previous call to GetLastStatus.
}
else
{
// An error occurred since the previous call to GetLastStatus.
}
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows XP, Windows 2000 Professional [solo app desktop] |
Server minimo supportato | Windows 2000 Server [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | gdiplusstringformat.h (include Gdiplus.h) |
Libreria | Gdiplus.lib |
DLL | Gdiplus.dll |