3 writes to Bottom
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
228this.rightsTable.AdvancedRowHeadersBorderStyle.Bottom = System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single;
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (1)
473AdvancedCellBorderStyle.Bottom = DataGridViewAdvancedCellBorderStyle.Single;
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewCellTests.cs (1)
3204Bottom = DataGridViewAdvancedCellBorderStyle.Single
18 references to Bottom
System.Windows.Forms (15)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (6)
560dgvabs.BottomInternal = AdvancedColumnHeadersBorderStyle.Bottom; 618dgvabs.BottomInternal = AdvancedColumnHeadersBorderStyle.Bottom; 1162&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.None) 1198&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.Single) 1204&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.Outset) 1210&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.Inset)
System\Windows\Forms\Controls\DataGridView\DataGridViewAdvancedBorderStyle.cs (1)
294return $"DataGridViewAdvancedBorderStyle {{ All={All}, Left={Left}, Right={Right}, Top={Top}, Bottom={Bottom} }}";
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (8)
854rect.Height = (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.None) ? 0 : 1; 855if (advancedBorderStyle.Bottom is DataGridViewAdvancedCellBorderStyle.OutsetDouble or DataGridViewAdvancedCellBorderStyle.InsetDouble) 3187Color dividerHeightColor = advancedBorderStyle.Bottom switch 3250if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3268if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3318if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3336if (advancedBorderStyle.Bottom is DataGridViewAdvancedCellBorderStyle.OutsetPartial or 3456switch (advancedBorderStyle.Bottom)
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellTests.cs (1)
3083Assert.Equal(expectedBottom, controlAdvancedBorderStylePlaceholder.Bottom);
System\Windows\Forms\DataGridViewRowTests.cs (2)
3743Assert.Equal(expectedBottom, result.Bottom); 3896Assert.Equal(expectedBottom, result.Bottom);