public TableCellProvider(AutomationProvider parent, CellInformation cell) : base(parent, TableItemPattern.Pattern, GridItemPattern.Pattern)
 {
     _cell = cell;
     ControlType = ControlType.Text;
 }
Ejemplo n.º 2
0
 private bool FieldsEqual(CellInformation other)
 {
     return Equals(Value, other.Value)
            && Equals(Column, other.Column)
            && Equals(Row, other.Row);
 }
Ejemplo n.º 3
0
 private bool FieldsEqual(CellInformation other)
 {
     return(Equals(Value, other.Value) &&
            Equals(Column, other.Column) &&
            Equals(Row, other.Row));
 }
 public void SetUp()
 {
     _cell = new TestCell();
     _cellInformation = DataGridCellInformation.FromCell(_cell);
 }