UiaAtkBridgeTest.AtkTests.PasswordCharTextBoxEntry C# (CSharp) Method

PasswordCharTextBoxEntry() private method

private PasswordCharTextBoxEntry ( ) : void
return void
		public virtual void PasswordCharTextBoxEntry ()
		{
			BasicWidgetType type = BasicWidgetType.PasswordCharTextBoxEntry;
			Atk.Object accessible = null;
			
			accessible = InterfaceText (type, true);
			
			string name = "Edit test#1";
			accessible = GetAccessible (type, name, true);
			
			States (accessible,
			  Atk.StateType.Editable, 
			  Atk.StateType.Enabled, 
			  Atk.StateType.Focusable,
			  Atk.StateType.Sensitive,
			  Atk.StateType.Showing,
			  Atk.StateType.Visible,
			  Atk.StateType.SingleLine);
		}