91 references to DataControlRowType
System.Web (90)
UI\WebControls\DetailsView.cs (23)
1640
_rowsArray.Add(CreateRow(0,
DataControlRowType
.EmptyDataRow, DataControlRowState.Normal, null, rows, null));
1684
_topPagerRow = CreateRow(-1,
DataControlRowType
.Pager, DataControlRowState.Normal, null, rows, pagedDataSource);
1687
_headerRow = CreateRow(-1,
DataControlRowType
.Header, DataControlRowState.Normal, null, rows, null);
1705
_footerRow = CreateRow(-1,
DataControlRowType
.Footer, DataControlRowState.Normal, null, rows, null);
1712
_bottomPagerRow = CreateRow(-1,
DataControlRowType
.Pager, DataControlRowState.Normal, null, rows, pagedDataSource);
1755
DataControlRowType
rowType =
DataControlRowType
.DataRow;
2108
private DetailsViewRow CreateRow(int rowIndex,
DataControlRowType
rowType, DataControlRowState rowState, DataControlField field, TableRowCollection rows, PagedDataSource pagedDataSource) {
2112
if (rowType !=
DataControlRowType
.Pager) {
2125
protected virtual DetailsViewRow CreateRow(int rowIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
2126
if (rowType ==
DataControlRowType
.Pager) {
2211
if (rows[i].RowType !=
DataControlRowType
.DataRow) {
2754
case
DataControlRowType
.DataRow:
2765
case
DataControlRowType
.Header:
2773
case
DataControlRowType
.Footer:
2781
case
DataControlRowType
.EmptyDataRow:
3260
DataControlRowType
rowType = row.RowType;
3269
case
DataControlRowType
.Header:
3273
case
DataControlRowType
.Footer:
3277
case
DataControlRowType
.DataRow:
3301
case
DataControlRowType
.Pager:
3304
case
DataControlRowType
.EmptyDataRow:
3313
if (rowType ==
DataControlRowType
.DataRow && field != null) {
UI\WebControls\DetailsViewPagerRow.cs (1)
20
public DetailsViewPagerRow(int rowIndex,
DataControlRowType
rowType, DataControlRowState rowState) : base(rowIndex, rowType, rowState) {
UI\WebControls\DetailsViewRow.cs (3)
18
private
DataControlRowType
_rowType;
26
public DetailsViewRow(int rowIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
57
public virtual
DataControlRowType
RowType {
UI\WebControls\FormView.cs (20)
1407
_row = CreateRow(0,
DataControlRowType
.EmptyDataRow, DataControlRowState.Normal, rows, null);
1448
_topPagerRow = CreateRow(itemIndex,
DataControlRowType
.Pager, DataControlRowState.Normal, rows, pagedDataSource);
1451
_headerRow = CreateRow(itemIndex,
DataControlRowType
.Header, DataControlRowState.Normal, rows, null);
1469
_footerRow = CreateRow(itemIndex,
DataControlRowType
.Footer, DataControlRowState.Normal, rows, null);
1476
_bottomPagerRow = CreateRow(itemIndex,
DataControlRowType
.Pager, DataControlRowState.Normal, rows, pagedDataSource);
1540
return CreateRow(PageIndex,
DataControlRowType
.DataRow, rowState, rows, null);
1801
private FormViewRow CreateRow(int itemIndex,
DataControlRowType
rowType, DataControlRowState rowState, TableRowCollection rows, PagedDataSource pagedDataSource) {
1807
if (rowType !=
DataControlRowType
.Pager) {
1820
protected virtual FormViewRow CreateRow(int itemIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
1821
if (rowType ==
DataControlRowType
.Pager) {
2381
case
DataControlRowType
.DataRow:
2394
case
DataControlRowType
.Header:
2402
case
DataControlRowType
.Footer:
2410
case
DataControlRowType
.EmptyDataRow:
2797
DataControlRowType
rowType = row.RowType;
2800
case
DataControlRowType
.Header:
2804
case
DataControlRowType
.Footer:
2808
case
DataControlRowType
.DataRow:
2823
case
DataControlRowType
.Pager:
2826
case
DataControlRowType
.EmptyDataRow:
UI\WebControls\FormViewPagerRow.cs (1)
20
public FormViewPagerRow(int rowIndex,
DataControlRowType
rowType, DataControlRowState rowState) : base(rowIndex, rowType, rowState) {
UI\WebControls\FormViewRow.cs (3)
18
private
DataControlRowType
_rowType;
25
public FormViewRow(int itemIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
57
public virtual
DataControlRowType
RowType {
UI\WebControls\GridView.cs (36)
1240
row.RowType =
DataControlRowType
.DataRow;
2042
CreateRow(-1, -1,
DataControlRowType
.EmptyDataRow, DataControlRowState.Normal, dataBinding, null, new DataControlField[0], rows, null);
2076
DataControlRowType
rowType;
2114
_headerRow = CreateRow(-1, -1,
DataControlRowType
.Header, DataControlRowState.Normal, dataBinding, null, displayFields, rows, null);
2118
CreateRow(-1, -1,
DataControlRowType
.EmptyDataRow, DataControlRowState.Normal, dataBinding, null, displayFields, rows, null);
2135
_topPagerRow = CreateRow(-1, -1,
DataControlRowType
.Pager, DataControlRowState.Normal, dataBinding, null, displayFields, rows, pagedDataSource);
2138
_headerRow = CreateRow(-1, -1,
DataControlRowType
.Header, DataControlRowState.Normal, dataBinding, null, displayFields, rows, null);
2186
rowType =
DataControlRowType
.DataRow;
2208
rowType =
DataControlRowType
.DataRow;
2264
CreateRow(-1, -1,
DataControlRowType
.EmptyDataRow, DataControlRowState.Normal, dataBinding, null, displayFields, rows, null);
2267
_footerRow = CreateRow(-1, -1,
DataControlRowType
.Footer, DataControlRowState.Normal, dataBinding, null, displayFields, rows, null);
2273
_bottomPagerRow = CreateRow(-1, -1,
DataControlRowType
.Pager, DataControlRowState.Normal, dataBinding, null, displayFields, rows, pagedDataSource);
2646
private GridViewRow CreateRow(int rowIndex, int dataSourceIndex,
DataControlRowType
rowType, DataControlRowState rowState, bool dataBind, object dataItem, DataControlField[] fields, TableRowCollection rows, PagedDataSource pagedDataSource) {
2650
if (rowType !=
DataControlRowType
.Pager) {
2676
protected virtual GridViewRow CreateRow(int rowIndex, int dataSourceIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
3313
DataControlRowType
rowType = row.RowType;
3318
if (rowType ==
DataControlRowType
.EmptyDataRow) {
3325
if (rowType ==
DataControlRowType
.Header) {
3332
if ((rowType ==
DataControlRowType
.Header) && useAccessibleHeader) {
3350
case
DataControlRowType
.Header:
3353
case
DataControlRowType
.Footer:
3371
case
DataControlRowType
.EmptyDataRow:
3384
case
DataControlRowType
.Pager:
3990
case
DataControlRowType
.Header:
3996
case
DataControlRowType
.Footer:
4002
case
DataControlRowType
.Pager:
4008
case
DataControlRowType
.DataRow:
4050
case
DataControlRowType
.EmptyDataRow:
4059
if ((row.RowType !=
DataControlRowType
.Pager) && (row.RowType !=
DataControlRowType
.EmptyDataRow)) {
4069
if (row.RowType ==
DataControlRowType
.DataRow && calculateColumns) {
4075
case
DataControlRowType
.Header:
4079
case
DataControlRowType
.Footer:
4082
case
DataControlRowType
.DataRow:
4096
if (row.RowType ==
DataControlRowType
.DataRow) {
4109
if (row.RowType ==
DataControlRowType
.DataRow) {
UI\WebControls\GridViewRow.cs (3)
19
private
DataControlRowType
_rowType;
28
public GridViewRow(int rowIndex, int dataItemIndex,
DataControlRowType
rowType, DataControlRowState rowState) {
87
public virtual
DataControlRowType
RowType {
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
616
if (e.Row.RowType ==
DataControlRowType
.DataRow)