26 references to IsDataSourceNullValueDefault
System.Windows.Forms (26)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
2871
if (cellStyle is not null && !cellStyle.
IsDataSourceNullValueDefault
)
2875
else if (!columnHeadersStyle.
IsDataSourceNullValueDefault
)
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonColumn.cs (1)
220
!defaultCellStyle.
IsDataSourceNullValueDefault
||
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (7)
2077
if (cellStyle is not null && !cellStyle.
IsDataSourceNullValueDefault
)
2081
else if (rowStyle is not null && !rowStyle.
IsDataSourceNullValueDefault
)
2085
else if (!DataGridView.RowsDefaultCellStyle.
IsDataSourceNullValueDefault
&&
2086
(rowIndex % 2 == 0 || DataGridView.AlternatingRowsDefaultCellStyle.
IsDataSourceNullValueDefault
))
2091
!DataGridView.AlternatingRowsDefaultCellStyle.
IsDataSourceNullValueDefault
)
2095
else if (columnStyle is not null && !columnStyle.
IsDataSourceNullValueDefault
)
3732
cellStyle.
IsDataSourceNullValueDefault
? Formatter.GetDefaultDataSourceNullValue(valueType) : cellStyle.DataSourceNullValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (2)
408
if (!dataGridViewCellStyle.
IsDataSourceNullValueDefault
)
599
if (!
IsDataSourceNullValueDefault
&& DataSourceNullValue is not null)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxColumn.cs (1)
306
!defaultCellStyle.
IsDataSourceNullValueDefault
||
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (2)
221
!defaultCellStyle.
IsDataSourceNullValueDefault
||
501
if (columnStyle is not null && !columnStyle.
IsDataSourceNullValueDefault
)
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.cs (2)
380
if (cellStyle is not null && !cellStyle.
IsDataSourceNullValueDefault
)
384
else if (!columnHeadersStyle.
IsDataSourceNullValueDefault
)
System\Windows\Forms\Controls\DataGridView\DataGridViewImageColumn.cs (1)
282
!defaultCellStyle.
IsDataSourceNullValueDefault
||
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (6)
693
if (cellStyle is not null && !cellStyle.
IsDataSourceNullValueDefault
)
697
else if (!rowHeadersStyle.
IsDataSourceNullValueDefault
)
917
if (rowStyle is not null && !rowStyle.
IsDataSourceNullValueDefault
)
921
else if (!rowsDefaultCellStyle.
IsDataSourceNullValueDefault
&&
922
(rowIndex % 2 == 0 || alternatingRowsDefaultCellStyle.
IsDataSourceNullValueDefault
))
926
else if (rowIndex % 2 == 1 && !alternatingRowsDefaultCellStyle.
IsDataSourceNullValueDefault
)
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (2)
405
if (cellStyle is not null && !cellStyle.
IsDataSourceNullValueDefault
)
409
else if (!rowHeadersStyle.
IsDataSourceNullValueDefault
)