Proprietà Shape.Focused
Ottiene un valore che indica se una un controllo line o ha attualmente lo stato attivo per l'input.
Spazio dei nomi: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintassi
'Dichiarazione
<BrowsableAttribute(False)> _
Public Overridable ReadOnly Property Focused As Boolean
[BrowsableAttribute(false)]
public virtual bool Focused { get; }
[BrowsableAttribute(false)]
public:
virtual property bool Focused {
bool get ();
}
[<BrowsableAttribute(false)>]
abstract Focused : bool
[<BrowsableAttribute(false)>]
override Focused : bool
function get Focused () : boolean
Valore proprietà
Tipo: System.Boolean
true se il controllo ha attualmente lo stato attivo per l'input, in caso contrario, false.
Note
per LineShape, OvalShapee RectangleShape controlli, il valore di Focused la proprietà è la stessa del codice ContainsFocus proprietà.
Per fornire a un controllo lo stato attivo, utilizzare Focus o Select metodi.
Esempi
Nell'esempio viene stabilito se specificato Shape ha attualmente lo stato attivo per l'input.
Public Sub ReportFocus(ByVal shape As Microsoft.VisualBasic.PowerPacks.Shape)
' Determine whether the Shape has focus.
If shape.ContainsFocus Then
MsgBox(shape.Name & " has focus.")
End If
End Sub
public void ReportFocus(Microsoft.VisualBasic.PowerPacks.Shape shape)
{
// Determine whether the Shape has focus.
if (shape.ContainsFocus)
{
MessageBox.Show(shape.Name + " has focus.");
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Spazio dei nomi Microsoft.VisualBasic.PowerPacks
Altre risorse
Procedura: disegnare linee con il controllo LineShape (Visual Studio)
Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)