1 write to Margins
System.Windows.Forms.DataVisualization (1)
Common\General\LegendColumns.cs (1)
768
newCell.
Margins
= new Margins(this.Margins.Top, this.Margins.Bottom, this.Margins.Left, this.Margins.Right);
10 references to Margins
System.Windows.Forms.DataVisualization (10)
Common\General\LegendColumns.cs (10)
1447
this.cellPosition.X += (int)(this.
Margins
.Left * singleWCharacterSize.Width / 100f);
1448
this.cellPosition.Y += (int)(this.
Margins
.Top * singleWCharacterSize.Height / 100f);
1449
this.cellPosition.Width -= (int)(this.
Margins
.Left * singleWCharacterSize.Width / 100f)
1450
+ (int)(this.
Margins
.Right * singleWCharacterSize.Width / 100f);
1451
this.cellPosition.Height -= (int)(this.
Margins
.Top * singleWCharacterSize.Height / 100f)
1452
+ (int)(this.
Margins
.Bottom * singleWCharacterSize.Height / 100f);
1538
cellSize.Width += (int)((this.
Margins
.Left + this.
Margins
.Right) * singleWCharacterSize.Width / 100f);
1539
cellSize.Height += (int)((this.
Margins
.Top + this.
Margins
.Bottom) * singleWCharacterSize.Height / 100f);