Condividi tramite


Proprietà SystemSettings.ScreenOrientation

Aggiornamento: novembre 2007

Ottiene o imposta l'orientamento corrente dello schermo di un dispositivo.

Spazio dei nomi:  Microsoft.WindowsCE.Forms
Assembly:  Microsoft.WindowsCE.Forms (in Microsoft.WindowsCE.Forms.dll)

Sintassi

'Dichiarazione
Public Shared Property ScreenOrientation As ScreenOrientation
'Utilizzo
Dim value As ScreenOrientation

value = SystemSettings.ScreenOrientation

SystemSettings.ScreenOrientation = value
public static ScreenOrientation ScreenOrientation { get; set; }
public:
static property ScreenOrientation ScreenOrientation {
    ScreenOrientation get ();
    void set (ScreenOrientation value);
}
public static function get ScreenOrientation () : ScreenOrientation
public static function set ScreenOrientation (value : ScreenOrientation)

Valore proprietà

Tipo: Microsoft.WindowsCE.Forms.ScreenOrientation

Uno dei valori dell'enumerazione, ovvero 0, 90, 180 o 270. Il valore predefinito è 0 (orientamento verticale).

Note

È possibile passare dal valore dell'orientamento verticale (ovvero 0) al valore 90, 180 o 270 senza reimpostare il dispositivo.

Esempi

Nell'esempio seguente il valore di questa proprietà viene impostato su 0 e quindi viene visualizzato nella barra di stato. Questo esempio fa parte di un esempio più esaustivo fornito per la classe SystemSettings.

' Set the screen orientation to normal
' and display the value on the status bar.
SystemSettings.ScreenOrientation = ScreenOrientation.Angle0
Me.StatusBar1.Text = SystemSettings.ScreenOrientation.ToString()
// Set the screen orientation to normal
// and display the value on the status bar.
SystemSettings.ScreenOrientation = ScreenOrientation.Angle0;
this.statusBar1.Text = SystemSettings.ScreenOrientation.ToString();

Autorizzazioni

Piattaforme

Windows CE, Windows Mobile per Smartphone, Windows Mobile per Pocket PC

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Compact Framework

Supportato in: 3.5, 2.0

Vedere anche

Riferimenti

SystemSettings Classe

Membri SystemSettings

Spazio dei nomi Microsoft.WindowsCE.Forms