File: PagerSettings.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (981 lines) | stat: -rw-r--r-- 52,769 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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
<?xml version="1.0" encoding="utf-8"?>
<Type Name="PagerSettings" FullName="System.Web.UI.WebControls.PagerSettings">
  <TypeSignature Language="C#" Value="public sealed class PagerSettings : System.Web.UI.IStateManager" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>System.Web.UI.IStateManager</InterfaceName>
    </Interface>
  </Interfaces>
  <Attributes>
    <Attribute>
      <AttributeName>System.ComponentModel.TypeConverter(typeof(System.ComponentModel.ExpandableObjectConverter))</AttributeName>
    </Attribute>
  </Attributes>
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Controls that support pagination (such as the <see cref="T:System.Web.UI.WebControls.GridView" />, <see cref="T:System.Web.UI.WebControls.DetailsView" />, and <see cref="T:System.Web.UI.WebControls.FormView" /> controls) can display a set of controls called <newTerm>the pager</newTerm> that allows the user to navigate the pages within the control. The <see cref="T:System.Web.UI.WebControls.PagerSettings" /> class is used by these controls to represent the properties of the pager. In general, the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object is stored in the PagerSettings property of the control. You can customize the pager by setting the properties of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
      <para>The pager supports several different display modes. To specify the mode in which to display the pager, set the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property. The following table describes the different modes.</para>
      <list type="table">
        <listheader>
          <item>
            <term>
              <para>Mode</para>
            </term>
            <description>
              <para>Description</para>
            </description>
          </item>
        </listheader>
        <item>
          <term>
            <para>
              <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> </para>
          </term>
          <description>
            <para>Previous-page and next-page buttons.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> </para>
          </term>
          <description>
            <para>Previous-page, next-page, first-page, and last -page buttons.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="F:System.Web.UI.WebControls.PagerButtons.Numeric" /> </para>
          </term>
          <description>
            <para>Numbered link buttons to access pages directly.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> </para>
          </term>
          <description>
            <para>Numbered-link, first-link, and last-link buttons.</para>
          </description>
        </item>
      </list>
      <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" />, <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" />, or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value you can customize the text of the non-numeric buttons by setting the properties shown in the following table.</para>
      <list type="table">
        <listheader>
          <item>
            <term>
              <para>Property</para>
            </term>
            <description>
              <para>Description</para>
            </description>
          </item>
        </listheader>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" />
            </para>
          </term>
          <description>
            <para>Text for the first-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" />
            </para>
          </term>
          <description>
            <para>Text for the previous-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" />
            </para>
          </term>
          <description>
            <para>Text for the next-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" />
            </para>
          </term>
          <description>
            <para>Text for the last-page button.</para>
          </description>
        </item>
      </list>
      <para>As an alternative, you can also display images for the non-numeric buttons by setting the properties as shown in the following table.</para>
      <list type="table">
        <listheader>
          <item>
            <term>
              <para>Property</para>
            </term>
            <description>
              <para>Description</para>
            </description>
          </item>
        </listheader>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" />
            </para>
          </term>
          <description>
            <para>The URL to an image to display for the first-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" />
            </para>
          </term>
          <description>
            <para>The URL to an image to display for the previous-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" />
            </para>
          </term>
          <description>
            <para>The URL to an image to display for the next-page button.</para>
          </description>
        </item>
        <item>
          <term>
            <para>
              <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" />
            </para>
          </term>
          <description>
            <para>The URL to an image to display for the last-page button.</para>
          </description>
        </item>
      </list>
      <block subset="none" type="note">
        <para>When an image property is set, the corresponding text property acts as the alternate text for the image. For example, when the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> property is set, the text that is specified by the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property is displayed as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
      </block>
      <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.Numeric" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, you can specify the number of page buttons to display in the pager by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.PageButtonCount" /> property.</para>
      <para>The pager can be displayed at the top, the bottom, or both the top and bottom of a control. To specify the position of the pager, set the <see cref="P:System.Web.UI.WebControls.PagerSettings.Position" /> property. To show or hide the pager, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.Visible" /> property.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Represents the properties of the paging controls in a control that supports pagination. This class cannot be inherited.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public PagerSettings ();" />
      <MemberType>Constructor</MemberType>
      <Parameters />
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="M:System.Web.UI.WebControls.PagerSettings.#ctor" /> constructor to create a new instance of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> class.</para>
          <block subset="none" type="note">
            <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.#ctor" /> constructor generally is used by control developers when providing paging support in a custom control.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> class.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="FirstPageImageUrl">
      <MemberSignature Language="C#" Value="public string FirstPageImageUrl { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> property to specify the URL to an image to display for the first-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display text for the first-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the URL to an image to display for the first-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="FirstPageText">
      <MemberSignature Language="C#" Value="public string FirstPageText { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("&amp;lt;&amp;lt;")</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property to specify the text to display for the first-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display an image for the first-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the text to display for the first-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="LastPageImageUrl">
      <MemberSignature Language="C#" Value="public string LastPageImageUrl { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" /> property to specify the URL to an image to display for the last-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can simply display text for the last-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the URL to an image to display for the last-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="LastPageText">
      <MemberSignature Language="C#" Value="public string LastPageText { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("&amp;gt;&amp;gt;")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> property to specify the text to display for the last-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display an image for the last-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the text to display for the last-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Mode">
      <MemberSignature Language="C#" Value="public System.Web.UI.WebControls.PagerButtons Mode { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.PagerButtons.Numeric)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.Web.UI.WebControls.PagerButtons</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Controls that support pagination provide multiple modes in which to display the paging controls. Use the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property to specify the mode. The following table describes the different modes for pagination controls.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Mode</para>
                </term>
                <description>
                  <para>Description</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> </para>
              </term>
              <description>
                <para>Previous-page and next-page buttons.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> </para>
              </term>
              <description>
                <para>Previous-page, next-page, first-page, and last-page buttons.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerButtons.Numeric" /> </para>
              </term>
              <description>
                <para>Numbered link buttons to access pages directly.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> </para>
              </term>
              <description>
                <para>Numbered and first-link and last-link buttons.</para>
              </description>
            </item>
          </list>
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" />, <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" />, or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, you can specify custom text for the non-numeric buttons by setting the properties shown in the following table.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Property</para>
                </term>
                <description>
                  <para>Description</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" />
                </para>
              </term>
              <description>
                <para>Text for the first-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" />
                </para>
              </term>
              <description>
                <para>Text for the previous-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" />
                </para>
              </term>
              <description>
                <para>Text for the next-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageText" />
                </para>
              </term>
              <description>
                <para>Text for the last-page button.</para>
              </description>
            </item>
          </list>
          <para>As an alternative, you can also display images for the non-numeric buttons by setting the properties shown in the following table.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Property</para>
                </term>
                <description>
                  <para>Description</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" />
                </para>
              </term>
              <description>
                <para>The URL to an image to display for the first-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" />
                </para>
              </term>
              <description>
                <para>The URL to an image to display for the previous-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" />
                </para>
              </term>
              <description>
                <para>The URL to an image to display for the next-page button.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Web.UI.WebControls.PagerSettings.LastPageImageUrl" />
                </para>
              </term>
              <description>
                <para>The URL to an image to display for the last-page button.</para>
              </description>
            </item>
          </list>
          <block subset="none" type="note">
            <para>When an image property is set, the corresponding text property acts as the alternate text for the image. For example, when the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageImageUrl" /> property is set, the text that is specified by the <see cref="P:System.Web.UI.WebControls.PagerSettings.FirstPageText" /> property is displayed as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the mode in which to display the pager controls in a control that supports pagination.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="NextPageImageUrl">
      <MemberSignature Language="C#" Value="public string NextPageImageUrl { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" /> property to specify the URL to an image to display for the next-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can simply display text for the next-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the URL to an image to display for the next-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="NextPageText">
      <MemberSignature Language="C#" Value="public string NextPageText { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("&amp;gt;")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> property to specify the text to display for the next-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display an image for the next-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.NextPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the text to display for the next-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="PageButtonCount">
      <MemberSignature Language="C#" Value="public int PageButtonCount { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue(10)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <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>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.Numeric" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.PageButtonCount" /> property to specify the number of page buttons to display in the pager.</para>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the number of page buttons to display in the pager when the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.Numeric" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NumericFirstLast" /> value.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Position">
      <MemberSignature Language="C#" Value="public System.Web.UI.WebControls.PagerPosition Position { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.PagerPosition.Bottom)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.Web.UI.WebControls.PagerPosition</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.PagerSettings.Position" /> property to specify the location at which to display the pager. The following table describes the different positions.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Position</para>
                </term>
                <description>
                  <para>Location</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerPosition.Bottom" />
                </para>
              </term>
              <description>
                <para>The bottom of the control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerPosition.Top" /> </para>
              </term>
              <description>
                <para>The top of the control.</para>
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="F:System.Web.UI.WebControls.PagerPosition.TopAndBottom" /> </para>
              </term>
              <description>
                <para>At both the top and bottom of the control.</para>
              </description>
            </item>
          </list>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets a value that specifies the location where the pager is displayed.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="PreviousPageImageUrl">
      <MemberSignature Language="C#" Value="public string PreviousPageImageUrl { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.Web.UI.UrlProperty</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" /> property to specify the URL to an image to display for the previous-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display text for the previous-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the URL to an image to display for the previous-page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="PreviousPageText">
      <MemberSignature Language="C#" Value="public string PreviousPageText { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue("&amp;lt;")</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>When the <see cref="P:System.Web.UI.WebControls.PagerSettings.Mode" /> property is set to the <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPreviousFirstLast" /> or <see cref="F:System.Web.UI.WebControls.PagerButtons.NextPrevious" /> value, use the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> property to specify the text to display for the previous-page button.</para>
          <block subset="none" type="note">
            <para>As an alternative, you can display an image for the previous-page button by setting the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" /> property instead of the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> property. If the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageImageUrl" /> and <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> properties are both set, the image is displayed with the <see cref="P:System.Web.UI.WebControls.PagerSettings.PreviousPageText" /> property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button.</para>
          </block>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets the text to display for the previous page button.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="PropertyChanged">
      <MemberSignature Language="C#" Value="public event EventHandler PropertyChanged;" />
      <MemberType>Event</MemberType>
      <ReturnValue>
        <ReturnType>System.EventHandler</ReturnType>
      </ReturnValue>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="E:System.Web.UI.WebControls.PagerSettings.PropertyChanged" /> event is raised each time a property of a <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object changes values. The <see cref="E:System.Web.UI.WebControls.PagerSettings.PropertyChanged" /> event commonly is used by data-bound controls that support pagination to rebind the data to the control when the pager settings change.</para>
          <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Occurs when a property of a <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object changes values.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="System.Web.UI.IStateManager.IsTrackingViewState">
      <MemberSignature Language="C#" Value="bool System.Web.UI.IStateManager.IsTrackingViewState { get; }" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Boolean</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.PagerSettings" /> instance is cast to the <see cref="T:System.Web.UI.IStateManager" /> interface.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets a value that indicates whether the server control is tracking its view state changes.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="System.Web.UI.IStateManager.LoadViewState">
      <MemberSignature Language="C#" Value="void IStateManager.LoadViewState (object savedState);" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="savedState" Type="System.Object" />
      </Parameters>
      <Docs>
        <param name="savedState">To be added.</param>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#LoadViewState(System.Object)" /> method to load the previously saved view state of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
          <block subset="none" type="note">
            <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#LoadViewState(System.Object)" /> method is private and cannot be called.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Loads the previously saved view state of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="System.Web.UI.IStateManager.SaveViewState">
      <MemberSignature Language="C#" Value="object IStateManager.SaveViewState ();" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#SaveViewState" /> method is a helper method that is used by the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> class to save the state of the object.</para>
          <block subset="none" type="note">
            <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#SaveViewState" /> method is private and cannot be called.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Saves the current view state of the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>An object that contains the saved state of the <see cref="T:System.Web.UI.WebControls.PagerSettings" />.</para>
        </returns>
      </Docs>
    </Member>
    <Member MemberName="System.Web.UI.IStateManager.TrackViewState">
      <MemberSignature Language="C#" Value="void IStateManager.TrackViewState ();" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#TrackViewState" /> method is overridden to mark the starting point at which to begin tracking and saving changes to the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object as part of the view state for the object.</para>
          <block subset="none" type="note">
            <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.System#Web#UI#IStateManager#TrackViewState" /> method is private and cannot be called.</para>
          </block>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Marks the starting point at which to begin tracking and saving view state changes to the <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
        </summary>
      </Docs>
    </Member>
    <Member MemberName="ToString">
      <MemberSignature Language="C#" Value="public override string ToString ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.WebControls.PagerSettings.ToString" /> method is used to retrieve a string representation of a <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object. The <see cref="M:System.Web.UI.WebControls.PagerSettings.ToString" /> method has been overridden to always return an empty string.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Retrieves the string representation of a <see cref="T:System.Web.UI.WebControls.PagerSettings" /> object.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>An empty string ("").</para>
        </returns>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Visible">
      <MemberSignature Language="C#" Value="public bool Visible { set; get; }" />
      <MemberType>Property</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.Boolean</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.PagerSettings.Visible" /> property to specify whether the paging controls are displayed in a control that supports pagination. To hide the paging controls, set the <see cref="P:System.Web.UI.WebControls.PagerSettings.Visible" /> property to false.</para>
          <para>The value of this property is stored in view state.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets or sets a value indicating whether the paging controls are displayed in a control that supports pagination.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>