示例#1
0
 public bool InsertLine(int index, Color color, float width, tkDashStyle style)
 {
     return(_pattern.InsertLine(index, ColorHelper.ColorToUInt(color), width, (tkDashStyle)style));
 }
示例#2
0
 /// <summary>
 /// Inserts line definition at the specified position of the pattern.
 /// </summary>
 /// <param name="Index">The index to insert the new line segment at.</param>
 /// <param name="Color">The color of the line.</param>
 /// <param name="Width">The width of the line.</param>
 /// <param name="style">The style of the line.</param>
 /// <returns>True on success and false otherwise.</returns>
 public bool InsertLine(int Index, uint Color, float Width, tkDashStyle style)
 {
     throw new NotImplementedException();
 }
示例#3
0
 /// <summary>
 /// Adds a line segment to the pattern.
 /// </summary>
 /// <param name="Color">The color of the line.</param>
 /// <param name="Width">The width of the line.</param>
 /// <param name="style">The style of the line.</param>
 public void AddLine(uint Color, float Width, tkDashStyle style)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public LineSet(tkMapColor color, float Width, tkDashStyle style)
 {
     this.color = color;
     this.Width = Width;
     this.style = style;
 }