1 write to step
System.Data (1)
fx\src\data\System\Data\DataColumn.cs (1)
1935this.step = value;
7 references to step
System.Data (7)
fx\src\data\System\Data\DataColumn.cs (7)
1926get { return (long)this.step; } 1931if (this.step != value) { 1933this.current = checked(this.current - this.step + value); 1941this.current = checked(this.current + this.step); 1951this.current = v + this.step; 1956return (((this.step < 0) && (value <= this.current)) || ((0 < this.step) && (this.current <= value)));