FarPoint.Win Assembly > FarPoint.Win Namespace > ElementWindowless Class : Focused Property |
'Declaration Public Overridable ReadOnly Property Focused As Boolean
'Usage Dim instance As ElementWindowless Dim value As Boolean value = instance.Focused
public virtual bool Focused {get;}
When the element has the focus, it can display a focus rectangle. Specify whether and how the focus rectangle appears in the element by setting the DrawFocusRectangle property.
Specify whether the element can receive the focus by setting the CanFocus property or the Enabled property.
Move the focus to the element by calling the Focus(Boolean) method.
This property is available at run time only.
bool vbool; element.AlignHorz = FarPoint.Win.HorizontalAlignment.Left; element.AlignVert = FarPoint.Win.VerticalAlignment.Top; element.TextWrap = true; element.Text = "Let's plan on meeting at 10."; vbool = element.Focused; textBox1.Text = Convert.ToString(vbool);
Dim vbool As Boolean element.AlignHorz = FarPoint.Win.HorizontalAlignment.Left element.AlignVert = FarPoint.Win.VerticalAlignment.Top element.TextWrap = true element.Text = "Let's plan on meeting at 10." vbool = control.Focused TextBox1.Text = vbool
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10