5 writes to LinkBehavior
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
114LinkCellTemplate.LinkBehavior = value;
System.Windows.Forms.Tests (4)
System\Windows\Forms\DataGridViewLinkCellTests.cs (4)
102_cell.LinkBehavior = LinkBehavior.HoverUnderline; 105_cell.LinkBehavior = LinkBehavior.NeverUnderline; 112_cell.LinkBehavior = LinkBehavior.SystemDefault; 225_cell.LinkBehavior = LinkBehavior.HoverUnderline;
14 references to LinkBehavior
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (4)
121if (value != LinkBehavior) 144if (value != LinkBehavior) 390dataGridViewCell.LinkBehaviorInternal = LinkBehavior; 952LinkUtilities.EnsureLinkFonts(cellStyle.Font!, LinkBehavior, ref getLinkFont, ref getHoverFont, isActive);
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (1)
105return LinkCellTemplate.LinkBehavior;
System.Windows.Forms.Tests (9)
System\Windows\Forms\DataGridViewLinkCellTests.cs (8)
97_cell.LinkBehavior.Should().Be(LinkBehavior.SystemDefault); 103_cell.LinkBehavior.Should().Be(LinkBehavior.HoverUnderline); 106_cell.LinkBehavior.Should().Be(LinkBehavior.NeverUnderline); 113_cell.LinkBehavior.Should().Be(LinkBehavior.SystemDefault); 236clonedLinkCell.LinkBehavior.Should().Be(_cell.LinkBehavior); 261clonedLinkCell.LinkBehavior.Should().Be(LinkBehavior.SystemDefault); 455_cell.LinkBehavior.Should().Be(LinkBehavior.AlwaysUnderline);
System\Windows\Forms\DataGridViewLinkColumnTests.cs (1)
113((DataGridViewLinkCell)row.Cells[_column.Index]).LinkBehavior.Should().Be(behavior);