예제 #1
0
 public override bool MoveNext()
 {
     return((eIdx = MiApi.mitab_c_next_feature_id(layer.Handle, eIdx)) != -1);
 }
예제 #2
0
 public Feature GetFirst()
 {
     return(this[MiApi.mitab_c_next_feature_id(Layer.Handle, -1)]);
 }
예제 #3
0
 /// <summary>
 /// Convenience method to return the next Feature in the file.
 /// </summary>
 /// <returns>A following feature in the file.</returns>
 public Feature GetNext()
 {
     return(new Feature(this.Layer, MiApi.mitab_c_next_feature_id(Layer.Handle, this.Id)));
 }