31 references to IsRow
System.Windows.Forms (29)
System\Windows\Forms\Controls\DataGridView\DataGridViewBand.cs (29)
46
if (
IsRow
)
80
style.AddScope(DataGridView,
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
92
style.RemoveScope(
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
95
value?.AddScope(DataGridView,
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
117
return
IsRow
? typeof(DataGridViewRowHeaderCell) : typeof(DataGridViewColumnHeaderCell);
141
Debug.Assert(!
IsRow
);
184
Debug.Assert(!
IsRow
);
230
if (
IsRow
)
259
if (
IsRow
)
272
if (
IsRow
)
335
if (
IsRow
&& Index > -1)
349
if (
IsRow
)
362
if (DataGridView is not null && !
IsRow
)
386
Debug.Assert(!
IsRow
);
403
if (
IsRow
)
426
if (
IsRow
)
472
Debug.Assert(!
IsRow
);
526
Debug.Assert(!
IsRow
);
534
if (
IsRow
)
596
if (
IsRow
&& Index > -1)
615
if (
IsRow
)
672
Debug.Assert(!
IsRow
);
680
IsRow
&&
715
if (!
IsRow
|| Index >= 0 || DataGridView is null)
768
Debug.Assert(
IsRow
);
789
if (
IsRow
)
813
if (
IsRow
)
833
DefaultCellStyle.RemoveScope(
IsRow
? DataGridViewCellStyleScopes.Row : DataGridViewCellStyleScopes.Column);
837
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
;