1 write to step
System.Data (1)
fx\src\data\System\Data\DataColumn.cs (1)
1867this.step = value;
7 references to step
System.Data (7)
fx\src\data\System\Data\DataColumn.cs (7)
1858get { return this.step; } 1863if (this.step != value) { 1865this.current = unchecked(this.current - this.step + value); 1873this.current = unchecked(this.current + this.step); 1884this.current = unchecked(v + this.step); 1889return (((this.step < 0) && (value <= this.current)) || ((0 < this.step) && (this.current <= value)));