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)
477AdvancedCellBorderStyle.Bottom = DataGridViewAdvancedCellBorderStyle.Single;
System.Windows.Forms.Tests (1)
System\Windows\Forms\DataGridViewCellTests.cs (1)
3206Bottom = DataGridViewAdvancedCellBorderStyle.Single
18 references to Bottom
System.Windows.Forms (15)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (6)
556dgvabs.BottomInternal = AdvancedColumnHeadersBorderStyle.Bottom; 614dgvabs.BottomInternal = AdvancedColumnHeadersBorderStyle.Bottom; 1158&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.None) 1194&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.Single) 1200&& AdvancedCellBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.Outset) 1206&& 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) 3189Color dividerHeightColor = advancedBorderStyle.Bottom switch 3252if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3270if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3320if (advancedBorderStyle.Bottom == DataGridViewAdvancedCellBorderStyle.OutsetPartial) 3338if (advancedBorderStyle.Bottom is DataGridViewAdvancedCellBorderStyle.OutsetPartial or 3458switch (advancedBorderStyle.Bottom)
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellTests.cs (1)
3085Assert.Equal(expectedBottom, controlAdvancedBorderStylePlaceholder.Bottom);
System\Windows\Forms\DataGridViewRowTests.cs (2)
3745Assert.Equal(expectedBottom, result.Bottom); 3898Assert.Equal(expectedBottom, result.Bottom);