Lines Matching refs:colA

63 			ColumnHeader colA = new ColumnHeader ();  in DisplayIndex_ListView_Created()
67 colA.DisplayIndex = 2; in DisplayIndex_ListView_Created()
77 lv.Columns.Add (colA); in DisplayIndex_ListView_Created()
83 Assert.AreEqual (0, colA.DisplayIndex, "#A1"); in DisplayIndex_ListView_Created()
90 Assert.AreEqual (1, colA.DisplayIndex, "#B1"); in DisplayIndex_ListView_Created()
97 Assert.AreEqual (0, colA.DisplayIndex, "#C1"); in DisplayIndex_ListView_Created()
104 Assert.AreEqual (0, colA.DisplayIndex, "#D1"); in DisplayIndex_ListView_Created()
113 Assert.AreEqual (0, colA.DisplayIndex, "#E1"); in DisplayIndex_ListView_Created()
127 ColumnHeader colA = new ColumnHeader (); in DisplayIndex_ListView_Disposed()
128 lv.Columns.Add (colA); in DisplayIndex_ListView_Disposed()
133 Assert.AreEqual (0, colA.DisplayIndex, "#A1"); in DisplayIndex_ListView_Disposed()
136 colA.DisplayIndex = 2; in DisplayIndex_ListView_Disposed()
139 Assert.AreEqual (1, colA.DisplayIndex, "#B1"); in DisplayIndex_ListView_Disposed()
142 colA.DisplayIndex = 255; in DisplayIndex_ListView_Disposed()
143 Assert.AreEqual (255, colA.DisplayIndex, "#C1"); in DisplayIndex_ListView_Disposed()
151 ColumnHeader colA = new ColumnHeader (); in DisplayIndex_ListView_NotCreated()
152 colA.DisplayIndex = -66; in DisplayIndex_ListView_NotCreated()
153 Assert.AreEqual (-66, colA.DisplayIndex, "#A1"); in DisplayIndex_ListView_NotCreated()
154 colA.DisplayIndex = 66; in DisplayIndex_ListView_NotCreated()
155 Assert.AreEqual (66, colA.DisplayIndex, "#A2"); in DisplayIndex_ListView_NotCreated()
168 lv.Columns.Add (colA); in DisplayIndex_ListView_NotCreated()
173 colA.DisplayIndex = -1; in DisplayIndex_ListView_NotCreated()
184 colA.DisplayIndex = lv.Columns.Count; in DisplayIndex_ListView_NotCreated()
194 Assert.AreEqual (0, colA.DisplayIndex, "#D1"); in DisplayIndex_ListView_NotCreated()
284 ColumnHeader colA = new ColumnHeader (); in Index_ListView_Disposed()
285 lv.Columns.Add (colA); in Index_ListView_Disposed()
289 Assert.AreEqual (-1, colA.Index, "#1"); in Index_ListView_Disposed()