Beispiel #1
0
 /// <summary>
 /// Adds a color break to the color scheme.
 /// </summary>
 /// <param name="Break"></param>
 /// <returns></returns>
 public int Add(IShapefileColorBreak Break)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 /// <summary>
 /// Insert a color break in the specified position of the scheme.
 /// </summary>
 /// <param name="Position">The position to insert color break at.</param>
 /// <param name="Break">The color break to insert.</param>
 /// <returns>The actual position color break was inserted at.</returns>
 public int InsertAt(int Position, IShapefileColorBreak Break)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 /// <summary>
 /// Replaces a color break in the color scheme.
 /// </summary>
 /// <param name="Index">The index of color break to replace.</param>
 /// <param name="pVal">The reference to the new color break.</param>
 public void set_ColorBreak(int Index, IShapefileColorBreak pVal)
 {
     throw new NotImplementedException();
 }