コード例 #1
0
ファイル: SnapLine.cs プロジェクト: Profit0004/mono
		public SnapLine (SnapLineType type, int offset, string filter, SnapLinePriority priority)
		{
			this.type =type;
			this.offset = offset;
			this.filter = filter;
			this.priority = priority;
		}
コード例 #2
0
ファイル: SnapLine.cs プロジェクト: pmq20/mono_forked
 public SnapLine(SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     this.type     = type;
     this.offset   = offset;
     this.filter   = filter;
     this.priority = priority;
 }
コード例 #3
0
 /// <summary>
 ///  SnapLine constructor that takes the type, offset, filter, and priority of the SnapLine.
 /// </summary>
 public SnapLine(SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     SnapLineType = type;
     Offset       = offset;
     Filter       = filter;
     Priority     = priority;
 }
コード例 #4
0
        public void SnapLine_IsVertical(SnapLineType type, bool expected)
        {
            var snapLine = new SnapLine(type, DefaultOffset, DefaultFilter, DefaultPriority);

            Assert.Equal(expected, snapLine.IsVertical);
        }
コード例 #5
0
ファイル: SnapLine.cs プロジェクト: Profit0004/mono
		public SnapLine (SnapLineType type, int offset, SnapLinePriority priority)
			: this (type, offset, null, priority)
		{
		}
コード例 #6
0
ファイル: SnapLine.cs プロジェクト: Profit0004/mono
		public SnapLine (SnapLineType type, int offset, string filter)
			: this (type, offset, filter, default (SnapLinePriority))
		{
		}
コード例 #7
0
ファイル: SnapLine.cs プロジェクト: Profit0004/mono
		public SnapLine (SnapLineType type, int offset)
			: this (type, offset, null)
		{
		}
コード例 #8
0
 // Constructors
 public SnapLine(SnapLineType type, int offset)
 {
 }
コード例 #9
0
 /// <summary>
 ///     SnapLine constructor that takes the type, offset, and priority of SnapLine.
 /// </summary>
 public SnapLine(SnapLineType type, int offset, SnapLinePriority priority) : this(type, offset, null, priority)
 {
 }
コード例 #10
0
 /// <summary>
 ///     SnapLine constructor that takes the type and offset of SnapLine.
 /// </summary>
 public SnapLine(SnapLineType type, int offset) : this(type, offset, null, SnapLinePriority.Low)
 {
 }
コード例 #11
0
ファイル: SnapLine.cs プロジェクト: pmq20/mono_forked
 public SnapLine(SnapLineType type, int offset, string filter)
     : this(type, offset, filter, default(SnapLinePriority))
 {
 }
コード例 #12
0
        public void SnapLine_ensure_IsHorizontal_IsVertical_do_not_overlap(SnapLineType type)
        {
            var snapLine = new SnapLine(type, DefaultOffset, DefaultFilter, DefaultPriority);

            Assert.NotEqual(snapLine.IsHorizontal, snapLine.IsVertical);
        }
コード例 #13
0
 public SnapLine(SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     throw null;
 }
コード例 #14
0
 public SnapLine(SnapLineType type, int offset, SnapLinePriority priority)
 {
     throw null;
 }
コード例 #15
0
 public SnapLine(SnapLineType type, int offset, string filter)
 {
     throw null;
 }
コード例 #16
0
 public SnapLine(SnapLineType type, int offset)
 {
     throw null;
 }
コード例 #17
0
 public SnapLine(SnapLineType type, int offset, string filter)
 {
 }
コード例 #18
0
ファイル: SnapLine.cs プロジェクト: pmq20/mono_forked
 public SnapLine(SnapLineType type, int offset)
     : this(type, offset, null)
 {
 }
コード例 #19
0
 public SnapLine(SnapLineType type, int offset, SnapLinePriority priority)
 {
 }
コード例 #20
0
 public SnapLine(SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
 }
コード例 #21
0
 // Constructors
 public SnapLine(SnapLineType type, int offset)
 {
 }
コード例 #22
0
 /// <summary>
 ///     SnapLine constructor that takes the type, offset and filter of SnapLine.
 /// </summary>
 public SnapLine(SnapLineType type, int offset, string filter) : this(type, offset, filter, SnapLinePriority.Low)
 {
 }
コード例 #23
0
 public SnapLine(SnapLineType type, int offset, string filter)
 {
 }
コード例 #24
0
 /// <summary>
 ///     SnapLine constructor that takes the type, offset, filter, and priority of the SnapLine.
 /// </summary>
 public SnapLine(SnapLineType type, int offset, string filter, SnapLinePriority priority)
 {
     throw new NotImplementedException(SR.NotImplementedByDesign);
 }
コード例 #25
0
 public SnapLine(SnapLineType type, int offset, SnapLinePriority priority)
 {
 }