コード例 #1
0
 public SnapLine(System.Windows.Forms.Design.Behavior.SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     this.type = type;
     this.offset = offset;
     this.filter = filter;
     this.priority = priority;
 }
コード例 #2
0
 public SnapLine(System.Windows.Forms.Design.Behavior.SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     this.type     = type;
     this.offset   = offset;
     this.filter   = filter;
     this.priority = priority;
 }
コード例 #3
0
 public SnapLine(System.Windows.Forms.Design.Behavior.SnapLineType type, int offset, SnapLinePriority priority) : this(type, offset, null, priority)
 {
 }
コード例 #4
0
 public SnapLine(System.Windows.Forms.Design.Behavior.SnapLineType type, int offset, string filter) : this(type, offset, filter, SnapLinePriority.Low)
 {
 }