31 references to IsRow
System.Windows.Forms (29)
System\Windows\Forms\Controls\DataGridView\DataGridViewBand.cs (29)
46
if (
IsRow
)
88
style.AddScope(DataGridView,
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
100
style.RemoveScope(
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
103
value?.AddScope(DataGridView,
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
125
return
IsRow
? typeof(DataGridViewRowHeaderCell) : typeof(DataGridViewColumnHeaderCell);
149
Debug.Assert(!
IsRow
);
192
Debug.Assert(!
IsRow
);
238
if (
IsRow
)
267
if (
IsRow
)
280
if (
IsRow
)
343
if (
IsRow
&& Index > -1)
357
if (
IsRow
)
370
if (DataGridView is not null && !
IsRow
)
394
Debug.Assert(!
IsRow
);
411
if (
IsRow
)
434
if (
IsRow
)
480
Debug.Assert(!
IsRow
);
534
Debug.Assert(!
IsRow
);
542
if (
IsRow
)
604
if (
IsRow
&& Index > -1)
623
if (
IsRow
)
680
Debug.Assert(!
IsRow
);
688
IsRow
&&
723
if (!
IsRow
|| Index >= 0 || DataGridView is null)
779
Debug.Assert(
IsRow
);
800
if (
IsRow
)
824
if (
IsRow
)
844
DefaultCellStyle.RemoveScope(
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
848
DefaultCellStyle.AddScope(DataGridView,
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
System.Windows.Forms.Tests (2)
System\Windows\Forms\DataGridViewColumnTests.cs (1)
1827
public new bool IsRow => base.
IsRow
;
System\Windows\Forms\DataGridViewRowTests.cs (1)
5794
public new bool IsRow => base.
IsRow
;