1 write to _columnCollection
PresentationFramework (1)
src\Framework\System\Windows\Documents\TableColumnCollection.cs (1)
38_columnCollection = new TableColumnCollectionInternal(owner);
31 references to _columnCollection
PresentationFramework (31)
src\Framework\System\Windows\Documents\TableColumnCollection.cs (31)
67_columnCollection.CopyTo(array, index); 89_columnCollection.CopyTo(array, index); 97return _columnCollection.GetEnumerator(); 105return ((IEnumerable<TableColumn>)_columnCollection).GetEnumerator(); 122_columnCollection.Add(item); 135_columnCollection.Clear(); 147return _columnCollection.Contains(item); 157return _columnCollection.IndexOf(item); 186_columnCollection.Insert(index, item); 206return _columnCollection.Remove(item); 225_columnCollection.RemoveAt(index); 250_columnCollection.RemoveRange(index, count); 265_columnCollection.TrimToSize(); 287return ((IList)_columnCollection).Add(value); 297return ((IList)_columnCollection).Contains(value); 302return ((IList)_columnCollection).IndexOf(value); 307((IList)_columnCollection).Insert(index, value); 314return ((IList)_columnCollection).IsFixedSize; 322return ((IList)_columnCollection).IsReadOnly; 328((IList)_columnCollection).Remove(value); 333((IList)_columnCollection).RemoveAt(index); 340return ((IList)_columnCollection)[index]; 345((IList)_columnCollection)[index] = value; 367return _columnCollection.Count; 379return _columnCollection.IsReadOnly; 393return _columnCollection.IsSynchronized; 404return _columnCollection.SyncRoot; 431return _columnCollection.PrivateCapacity; 435_columnCollection.PrivateCapacity = value; 453return _columnCollection[index]; 457_columnCollection[index] = value;