Exemple #1
0
 /// <summary>
 /// Creates a new instance based on another instance
 /// </summary>
 /// <param name="borderOptions">Instance to copy</param>
 public BorderOptions(IBorderOptions borderOptions)
 {
     sides     = borderOptions.Sides;
     lineStyle = borderOptions.LineStyle;
     Weight    = borderOptions.Weight;
     Color     = borderOptions.Color;
 }
Exemple #2
0
 /// <summary>
 /// Creates a new instance
 /// </summary>
 public BorderOptions()
 {
     sides     = BorderSides.None;
     lineStyle = Borderline.Continuous;
     Weight    = 1;
     Color     = Color.Black;
 }
Exemple #3
0
 public BorderOptions(IBorderOptions iborderOptions_0)
 {
     this.borderSides_0 = iborderOptions_0.Sides;
     this.borderline_0  = iborderOptions_0.LineStyle;
     this.Weight        = iborderOptions_0.Weight;
     this.Color         = iborderOptions_0.Color;
 }
Exemple #4
0
 public BorderOptions()
 {
     this.borderSides_0 = BorderSides.None;
     this.borderline_0  = Borderline.Continuous;
     this.Weight        = 1;
     this.Color         = System.Drawing.Color.Black;
 }
Exemple #5
0
		/// <summary>
		/// Creates a new instance based on another instance
		/// </summary>
		/// <param name="borderOptions">Instance to copy</param>
		public BorderOptions(IBorderOptions borderOptions)
		{
			sides = borderOptions.Sides;
			lineStyle = borderOptions.LineStyle;
			Weight = borderOptions.Weight;
			Color = borderOptions.Color;
		}
Exemple #6
0
		/// <summary>
		/// Creates a new instance
		/// </summary>
		public BorderOptions()
		{
			sides = BorderSides.None;
			lineStyle = Borderline.Continuous;
			Weight = 1;
			Color = Color.Black;
		}