7 types derived from TableRow
System.Web (7)
UI\WebControls\DataGridItem.cs (1)
16
public class DataGridItem :
TableRow
, IDataItemContainer {
UI\WebControls\DetailsViewRow.cs (1)
15
public class DetailsViewRow :
TableRow
{
UI\WebControls\FormViewRow.cs (1)
15
public class FormViewRow :
TableRow
{
UI\WebControls\GridViewRow.cs (1)
15
public class GridViewRow :
TableRow
, IDataItemContainer {
UI\WebControls\LoginUtil.cs (1)
220
internal sealed class DisappearingTableRow :
TableRow
{
UI\WebControls\TableFooterRow.cs (1)
20
public class TableFooterRow :
TableRow
{
UI\WebControls\TableHeaderRow.cs (1)
20
public class TableHeaderRow :
TableRow
{
23 instantiations of TableRow
System.Web (23)
Handlers\TraceHandler.cs (1)
307
TableRow trow = new
TableRow
();
UI\WebControls\ChangePassword.cs (2)
2736
r = new
TableRow
();
3156
r = new
TableRow
();
UI\WebControls\CreateUserWizard.cs (1)
3424
TableRow tableRow = new
TableRow
();
UI\WebControls\DetailsView.cs (1)
2719
TableRow pagerTableRow = new
TableRow
();
UI\WebControls\FormView.cs (1)
2347
TableRow pagerTableRow = new
TableRow
();
UI\WebControls\GridView.cs (1)
3288
TableRow pagerTableRow = new
TableRow
();
UI\WebControls\LayoutTable.cs (1)
36
TableRow row = new
TableRow
();
UI\WebControls\login.cs (4)
1977
r = new
TableRow
();
2073
r = new
TableRow
();
2178
r = new
TableRow
();
2279
r = new
TableRow
();
UI\WebControls\PasswordRecovery.cs (5)
2412
r = new
TableRow
();
2507
r = new
TableRow
();
2551
r = new
TableRow
();
2703
r = new
TableRow
();
2774
r = new
TableRow
();
UI\WebControls\Wizard.cs (6)
2783
_navigationRow = new
TableRow
();
2791
TableRow stepRow = new
TableRow
() {
2806
_headerTableRow = new
TableRow
();
2844
TableRow outerRow = new
TableRow
();
3044
_row = new
TableRow
();
3228
TableRow row = new
TableRow
();
112 references to TableRow
System.Web (112)
Handlers\TraceHandler.cs (9)
225
TableRow
trow = AddRow(table);
306
static private
TableRow
AddRow(Table t) {
307
TableRow
trow = new TableRow();
312
static private TableCell AddHeaderCell(
TableRow
trow, string text) {
319
static private TableCell AddCell(
TableRow
trow, string text) {
334
TableRow
trow;
435
TableRow
trow;
516
TableRow
trow;
567
TableRow
trow = AddRow(table);
UI\WebControls\ChangePassword.cs (2)
2700
TableRow
r;
3004
TableRow
r;
UI\WebControls\CreateUserWizard.cs (36)
109
private
TableRow
_passwordHintTableRow;
110
private
TableRow
_questionRow;
111
private
TableRow
_answerRow;
112
private
TableRow
_emailRow;
113
private
TableRow
_passwordCompareRow;
114
private
TableRow
_passwordRegExpRow;
115
private
TableRow
_emailRegExpRow;
116
private
TableRow
_passwordTableRow;
117
private
TableRow
_confirmPasswordTableRow;
2239
private static
TableRow
CreateTwoColumnRow(Control leftCellControl, params Control[] rightCellControls) {
2240
var
row = CreateTableRow();
2256
private static
TableRow
CreateDoubleSpannedColumnRow(params Control[] cellControls) {
2260
private static
TableRow
CreateDoubleSpannedColumnRow(HorizontalAlign? cellHorizontalAlignment, params Control[] cellControls) {
2261
var
row = CreateTableRow();
2334
private static
TableRow
CreateTableRow() {
2335
TableRow
row = new LoginUtil.DisappearingTableRow();
3110
var
r = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.Title);
3115
var
r = CreateTableRow();
3123
var
r = CreateDoubleSpannedColumnRow(HorizontalAlign.Right,
3131
var
r = CreateDoubleSpannedColumnRow(container.EditProfileIcon, container.EditProfileLink);
3272
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.Title);
3277
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.InstructionLabel);
3286
var
row = CreateTwoColumnRow(container.UserNameLabel, container.UserNameTextBox, container.UserNameRequired);
3298
var
row = CreateTwoColumnRow(container.PasswordLabel, rightCellColumns.ToArray());
3304
var
row = CreateTableRow();
3325
var
row = CreateTwoColumnRow(container.ConfirmPasswordLabel, rightCellColumns.ToArray());
3334
var
row = CreateTwoColumnRow(container.EmailLabel, container.EmailTextBox, container.EmailRequired);
3343
var
row = CreateTwoColumnRow(container.QuestionLabel, container.QuestionTextBox, container.QuestionRequired);
3352
var
row = CreateTwoColumnRow(container.AnswerLabel, container.AnswerTextBox, container.AnswerRequired);
3358
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.PasswordCompareValidator);
3364
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.PasswordRegExpValidator);
3370
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.EmailRegExpValidator);
3376
var
row = CreateDoubleSpannedColumnRow(HorizontalAlign.Center, container.ErrorMessageLabel);
3381
var
row = CreateDoubleSpannedColumnRow(container.HelpPageIcon, container.HelpPageLink);
3394
private
TableRow
_row;
3424
TableRow
tableRow = new TableRow();
UI\WebControls\DataControlLinkButton.cs (1)
90
((i == 1) && (control is
TableRow
)) ||
UI\WebControls\DataControlPagerLinkButton.cs (2)
48
((i == 1) && (control is
TableRow
)) ||
51
((i == 4) && (control is
TableRow
)) ||
UI\WebControls\DataGridLinkButton.cs (1)
43
((i == 1) && (control is
TableRow
)) ||
UI\WebControls\DataList.cs (1)
1319
((
TableRow
)rowEnum.Current).MergeStyle(compositeStyle);
UI\WebControls\DataListItem.cs (2)
144
TableRow
r = (
TableRow
)rowEnum.Current;
UI\WebControls\DetailsView.cs (3)
1858
private void CreateNextPrevPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
1949
private void CreateNumericPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
2719
TableRow
pagerTableRow = new TableRow();
UI\WebControls\FormView.cs (3)
1566
private void CreateNextPrevPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
1650
private void CreateNumericPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
2347
TableRow
pagerTableRow = new TableRow();
UI\WebControls\GridView.cs (3)
2414
private void CreateNextPrevPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
2511
private void CreateNumericPager(
TableRow
row, PagedDataSource pagedDataSource, bool addFirstLastPageButtons) {
3288
TableRow
pagerTableRow = new TableRow();
UI\WebControls\LayoutTable.cs (1)
36
TableRow
row = new TableRow();
UI\WebControls\login.cs (4)
1896
TableRow
r;
1991
TableRow
r;
2087
TableRow
r;
2192
TableRow
r;
UI\WebControls\PasswordRecovery.cs (5)
2329
TableRow
r;
2426
TableRow
r;
2542
TableRow
r = new LoginUtil.DisappearingTableRow();
2642
TableRow
r;
2717
TableRow
r;
UI\WebControls\Table.cs (4)
339
foreach (
TableRow
row in rows) {
367
foreach (
TableRow
row in rows) {
393
if (child is
TableRow
)
405
if (child is
TableRow
)
UI\WebControls\TableCellCollection.cs (3)
28
/// A protected field of type <see cref='System.Web.UI.WebControls.
TableRow
'/>. Represents the
33
private
TableRow
owner;
38
internal TableCellCollection(
TableRow
owner) {
UI\WebControls\TableRow.cs (1)
34
/// Initializes a new instance of the <see cref='System.Web.UI.WebControls.
TableRow
'/> class.
UI\WebControls\TableRowCollection.cs (25)
17
/// <para>Encapsulates the collection of <see cref='System.Web.UI.WebControls.
TableRow
'/> objects within a <see cref='System.Web.UI.WebControls.Table'/> control.</para>
26
/// A protected field of type <see cref='System.Web.UI.WebControls.Table'/>. Represents the <see cref='System.Web.UI.WebControls.
TableRow
'/> collection internally.
40
/// count of <see cref='System.Web.UI.WebControls.
TableRow
'/> in the collection.
54
/// Gets a <see cref='System.Web.UI.WebControls.
TableRow
'/> referenced by the
58
public
TableRow
this[int index] {
60
return(
TableRow
)owner.Controls[index];
68
/// Adds the specified <see cref='System.Web.UI.WebControls.
TableRow
'/> to the end of the collection.
71
public int Add(
TableRow
row) {
79
/// Adds the specified <see cref='System.Web.UI.WebControls.
TableRow
'/> to the collection at the specified
83
public void AddAt(int index,
TableRow
row) {
93
public void AddRange(
TableRow
[] rows) {
97
foreach(
TableRow
row in rows) {
104
/// <para>Removes all <see cref='System.Web.UI.WebControls.
TableRow
'/> controls from the collection.</para>
116
/// <see cref='System.Web.UI.WebControls.
TableRow
'/> within the collection. </para>
118
public int GetRowIndex(
TableRow
row) {
128
/// Returns an enumerator of all <see cref='System.Web.UI.WebControls.
TableRow
'/> controls within the
180
/// <para>Removes the specified <see cref='System.Web.UI.WebControls.
TableRow
'/> from the collection.</para>
182
public void Remove(
TableRow
row) {
188
/// <para>Removes the <see cref='System.Web.UI.WebControls.
TableRow
'/> from the collection at the specified
204
AddAt(index, (
TableRow
)value);
219
return Add((
TableRow
) o);
225
return owner.Controls.Contains((
TableRow
)o);
231
return owner.Controls.IndexOf((
TableRow
)o);
237
AddAt(index, (
TableRow
)o);
243
Remove((
TableRow
)o);
UI\WebControls\Wizard.cs (6)
2603
private
TableRow
_headerTableRow;
2604
private
TableRow
_navigationRow;
2791
TableRow
stepRow = new TableRow() {
2844
TableRow
outerRow = new TableRow();
2984
private
TableRow
_row;
3228
TableRow
row = new TableRow();