File: GridViewRow.xml

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (552 lines) | stat: -rw-r--r-- 28,336 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<?xml version="1.0" encoding="utf-8"?>
<Type Name="GridViewRow" FullName="System.Web.UI.WebControls.GridViewRow">
  <TypeSignature Language="C#" Value="public class GridViewRow : System.Web.UI.WebControls.TableRow, System.Web.UI.IDataItemContainer" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Web.UI.WebControls.TableRow</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>System.Web.UI.IDataItemContainer</InterfaceName>
    </Interface>
  </Interfaces>
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" /> class is used represent an individual row in a <see cref="T:System.Web.UI.WebControls.GridView" /> control. Each row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control has a designated row type using the <see cref="T:System.Web.UI.WebControls.DataControlRowType" /> enumeration. The following table lists the different row types. </para>
      <list type="table">
        <listheader>
          <item>
            <term>
              <para>Row type</para>
            </term>
            <description>
              <para>Description</para>
            </description>
          </item>
        </listheader>
        <item>
          <term>
            <para>DataRow</para>
          </term>
          <description>
            <para>A data row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          </description>
        </item>
        <item>
          <term>
            <para> EmptyDataRow</para>
          </term>
          <description>
            <para>The empty row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control. The empty row is displayed when the <see cref="T:System.Web.UI.WebControls.GridView" /> control has no records to display and the <see cref="P:System.Web.UI.WebControls.GridView.EmptyDataTemplate" /> template is not null.</para>
          </description>
        </item>
        <item>
          <term>
            <para> Footer</para>
          </term>
          <description>
            <para>The footer row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Header</para>
          </term>
          <description>
            <para>The header row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Pager</para>
          </term>
          <description>
            <para>A pager row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Separator</para>
          </term>
          <description>
            <para>A separator row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          </description>
        </item>
      </list>
      <para>To determine the row type of a <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object, use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowType" /> property. A <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object also has a state associated with it. The state can be a bitwise combination of the values in the following table.</para>
      <list type="table">
        <listheader>
          <item>
            <term>
              <para>State value</para>
            </term>
            <description>
              <para>Description</para>
            </description>
          </item>
        </listheader>
        <item>
          <term>
            <para>Alternate</para>
          </term>
          <description>
            <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is an alternate row in the <see cref="T:System.Web.UI.WebControls.GridView" />  control.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Edit</para>
          </term>
          <description>
            <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is in edit mode.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Normal</para>
          </term>
          <description>
            <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is in its normal (default) state.</para>
          </description>
        </item>
        <item>
          <term>
            <para>Selected</para>
          </term>
          <description>
            <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is selected.</para>
          </description>
        </item>
      </list>
      <para>To determine the state of a <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object, use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowState" /> property.</para>
      <para>The <see cref="T:System.Web.UI.WebControls.GridView" /> control stores all of its data rows in the <see cref="P:System.Web.UI.WebControls.GridView.Rows" /> collection. To determine the index of a <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object in the <see cref="P:System.Web.UI.WebControls.GridView.Rows" /> collection, use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowIndex" /> property.</para>
      <para>You can access the properties of the underlying data object that is bound to the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object by using the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> property. </para>
      <block subset="none" type="note">
        <para>The <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> property is available only during and after the <see cref="E:System.Web.UI.WebControls.GridView.RowDataBound" /> event of a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
      </block>
      <para>To determine the index of the data object in the underlying data source, use the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItemIndex" /> property.</para>
      <para>You can access the individual cells of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object by using the <see cref="P:System.Web.UI.WebControls.TableRow.Cells" /> property. If a cell contains other controls, you can retrieve a control from the cell by using the <see cref="P:System.Web.UI.Control.Controls" /> collection of the cell. You can also use the <see cref="M:System.Web.UI.Control.FindControl(System.String)" /> method of the cell to find the control, if the control has an <see cref="P:System.Web.UI.Control.ID" /> specified.</para>
      <para>To retrieve a field value from a <see cref="T:System.Web.UI.WebControls.BoundField" /> field column or an automatically generated field column, use the <see cref="P:System.Web.UI.WebControls.TableCell.Text" /> property of the cell. To retrieve a field value from other field column types where the field value is bound to a control, first retrieve the control from the appropriate cell and then access the appropriate property of the control.</para>
      <block subset="none" type="note">
        <para>It is possible to use a data-binding expression directly in a <see cref="T:System.Web.UI.WebControls.TemplateField" />  field column without binding the value to a property of a control. In this case, the field value is automatically placed in a <see cref="T:System.Web.UI.DataBoundLiteralControl" /> control. To retrieve the field value, you must first retrieve the <see cref="T:System.Web.UI.DataBoundLiteralControl" /> control from the appropriate cell and then use its <see cref="P:System.Web.UI.DataBoundLiteralControl.Text" /> property.</para>
      </block>
      <para>For a list of initial property values for an instance of <see cref="T:System.Web.UI.WebControls.GridViewRow" />, see the <see cref="M:System.Web.UI.WebControls.GridViewRow.#ctor(System.Int32,System.Int32,System.Web.UI.WebControls.DataControlRowType,System.Web.UI.WebControls.DataControlRowState)" /> constructor.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Represents an individual row in a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public GridViewRow (int rowIndex, int dataItemIndex, System.Web.UI.WebControls.DataControlRowType rowType, System.Web.UI.WebControls.DataControlRowState rowState);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="rowIndex" Type="System.Int32" />
        <Parameter Name="dataItemIndex" Type="System.Int32" />
        <Parameter Name="rowType" Type="System.Web.UI.WebControls.DataControlRowType" />
        <Parameter Name="rowState" Type="System.Web.UI.WebControls.DataControlRowState" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use this constructor to initialize a new instance of a <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object.</para>
          <para>The following table shows initial property values for an instance of <see cref="T:System.Web.UI.WebControls.GridViewRow" />.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Property</para>
                </term>
                <description>
                  <para>Initial Value</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItemIndex" /> </para>
              </term>
              <description>
                <para>The value of the <paramref name="dataItemIndex" /> parameter.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.GridViewRow.RowIndex" /> </para>
              </term>
              <description>
                <para>The value of the <paramref name="rowIndex" /> parameter.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.GridViewRow.RowState" /> </para>
              </term>
              <description>
                <para>The value of the <paramref name="rowState" /> parameter.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.GridViewRow.RowType" /> </para>
              </term>
              <description>
                <para>The value of the <paramref name="rowType" /> parameter.</para>
              </description>
            </item>
          </list>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> class.</para>
        </summary>
        <param name="rowIndex">
          <attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object in the <see cref="P:System.Web.UI.WebControls.GridView.Rows" /> collection of a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</param>
        <param name="dataItemIndex">
          <attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> in the underlying <see cref="T:System.Data.DataSet" />.</param>
        <param name="rowType">
          <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.WebControls.DataControlRowType" /> enumeration values.</param>
        <param name="rowState">
          <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Web.UI.WebControls.DataControlRowState" /> enumeration values.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="DataItem">
      <MemberSignature Language="C#" Value="public virtual object DataItem { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> property to access the properties of the underlying data object to which the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is bound. The <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> property is only available during and after the <see cref="E:System.Web.UI.WebControls.GridView.RowDataBound" /> event of a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          <block subset="none" type="note">
            <para>This property applies only to data rows.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the underlying data object to which the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object is bound.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="DataItemIndex">
      <MemberSignature Language="C#" Value="public virtual int DataItemIndex { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItemIndex" /> property to determine the index of the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> in the underlying <see cref="T:System.Data.DataSet" />.</para>
          <block subset="none" type="note">
            <para>This property applies only to data rows.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the index of the <see cref="P:System.Web.UI.WebControls.GridViewRow.DataItem" /> in the underlying <see cref="T:System.Data.DataSet" />.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="OnBubbleEvent">
      <MemberSignature Language="C#" Value="protected override bool OnBubbleEvent (object source, EventArgs e);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="source" Type="System.Object" />
        <Parameter Name="e" Type="System.EventArgs" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Determines whether to pass an event up the page's ASP.NET server control hierarchy.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>true if the event has been canceled; otherwise, false.</para>
        </returns>
        <param name="source">
          <attribution license="cc4" from="Microsoft" modified="false" />The source of the event.</param>
        <param name="e">
          <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="RowIndex">
      <MemberSignature Language="C#" Value="public virtual int RowIndex { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowIndex" /> property to determine the index of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object in the <see cref="P:System.Web.UI.WebControls.GridView.Rows" /> collection of a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
          <block subset="none" type="note">
            <para>This property applies only to data rows.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the index of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object in the <see cref="P:System.Web.UI.WebControls.GridView.Rows" /> collection of a <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="RowState">
      <MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.DataControlRowState RowState { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Web.UI.WebControls.DataControlRowState</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowType" /> property to determine the state of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object. The state can be a bitwise combination of the values in the following table:</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Status value</para>
                </term>
                <description>
                  <para>Description</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>DataControlRowState.Alternate</para>
              </term>
              <description>
                <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" />  object is an alternate row in the <see cref="T:System.Web.UI.WebControls.GridView" />  control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>DataControlRowState.Edit</para>
              </term>
              <description>
                <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" />  object is in edit mode.</para>
              </description>
            </item>
            <item>
              <term>
                <para>DataControlRowState.Normal</para>
              </term>
              <description>
                <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" />  object is in its normal (default) state.</para>
              </description>
            </item>
            <item>
              <term>
                <para>DataControlRowState.Selected</para>
              </term>
              <description>
                <para>The <see cref="T:System.Web.UI.WebControls.GridViewRow" />  object is selected.</para>
              </description>
            </item>
          </list>
          <para>This property is commonly used to determine the state of a row before performing an operation.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the state of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="RowType">
      <MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.DataControlRowType RowType { set; get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Web.UI.WebControls.DataControlRowType</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="P:System.Web.UI.WebControls.GridViewRow.RowType" /> property to determine the type of row that the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object represents. The following table lists the different row type values using the <see cref="T:System.Web.UI.WebControls.DataControlRowType" /> enumeration.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Row type</para>
                </term>
                <description>
                  <para>Description</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.DataRow" /> </para>
              </term>
              <description>
                <para>A data row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.Footer" /> </para>
              </term>
              <description>
                <para>The footer row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.Header" /> </para>
              </term>
              <description>
                <para>The header row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.EmptyDataRow" /> </para>
              </term>
              <description>
                <para>The empty row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control. The empty row is displayed when <see cref="T:System.Web.UI.WebControls.GridView" /> control does not have any records to display.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.Pager" /> </para>
              </term>
              <description>
                <para>A pager row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.DataControlRowType.Separator" /> </para>
              </term>
              <description>
                <para>A separator row in the <see cref="T:System.Web.UI.WebControls.GridView" /> control.</para>
              </description>
            </item>
          </list>
          <para>This property is commonly used to determine a row's type before performing an operation.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the row type of the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> object.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="System.Web.UI.IDataItemContainer.DataItem">
      <MemberSignature Language="C#" Value="object System.Web.UI.IDataItemContainer.DataItem { get; }" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> instance is cast to the <see cref="T:System.Web.UI.IDataItemContainer" /> interface.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>For a description of this member, see <see cref="P:System.Web.UI.IDataItemContainer.DataItem" />.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="System.Web.UI.IDataItemContainer.DataItemIndex">
      <MemberSignature Language="C#" Value="int System.Web.UI.IDataItemContainer.DataItemIndex { get; }" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> instance is cast to the <see cref="T:System.Web.UI.IDataItemContainer" /> interface.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>For a description of this member, see <see cref="P:System.Web.UI.IDataItemContainer.DataItemIndex" />.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="System.Web.UI.IDataItemContainer.DisplayIndex">
      <MemberSignature Language="C#" Value="int System.Web.UI.IDataItemContainer.DisplayIndex { get; }" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.GridViewRow" /> instance is cast to the <see cref="T:System.Web.UI.IDataItemContainer" /> interface.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>For a description of this member, see <see cref="P:System.Web.UI.IDataItemContainer.DisplayIndex" />.</para>
        </summary>
      </Docs>
    </Member>
  </Members>
</Type>