Atspi.Accessible.QueryTable C# (CSharp) Method

QueryTable() public method

public QueryTable ( ) : Table
return Table
        public Table QueryTable()
        {
            if ((Interfaces & Interfaces.Table) != 0)
                return new Table (this);
            return null;
        }

Usage Example

Ejemplo n.º 1
0
        public TableTest()
        {
            frame = GetFrame ("gtktreeview.py");

            treeTable = FindByRole (frame, Role.TreeTable, true);
            Assert.IsNotNull (treeTable, "Couldn't find the tree table");
            table = treeTable.QueryTable ();
            Assert.IsNotNull (table, "menuBar.QueryTable");
        }
All Usage Examples Of Atspi.Accessible::QueryTable