コード例 #1
0
 public VisualMarkerEventArgs(Style style, StyleVisualMarker marker, MouseEventArgs args)
     : base(args.Button, args.Clicks, args.X, args.Y, args.Delta)
 {
     this.Style = style;
     this.Marker = marker;
 }
コード例 #2
0
 /// <summary>
 /// Shows VisualMarker
 /// Call this method in Draw method, when you need to show VisualMarker for your style
 /// </summary>
 protected virtual void AddVisualMarker(DocumentEditor tb, StyleVisualMarker marker)
 {
     tb.AddVisualMarker(marker);
 }