-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDevExpress.XtraLayout.v20.2.xml
More file actions
5954 lines (5953 loc) · 370 KB
/
DevExpress.XtraLayout.v20.2.xml
File metadata and controls
5954 lines (5953 loc) · 370 KB
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
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<doc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<assembly>
<name>DevExpress.XtraLayout.v20.2</name>
</assembly>
<members>
<member name="N:DevExpress.XtraDataLayout">
<summary>
<para>Contains classes that implement the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> control functionality.</para>
</summary>
</member>
<member name="T:DevExpress.XtraDataLayout.DataLayoutControl">
<summary>
<para>Creates and maintains a consistent layout of controls for editing a specific data source's fields. See Data Layout Control.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> class.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.AddToHiddenItems(DevExpress.XtraLayout.BaseLayoutItem)">
<summary>
<para>Adds a layout item to the control and hides it.</para>
</summary>
<param name="item">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item to be added to the control and hidden.</param>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AllowGeneratingCollectionProperties">
<summary>
<para>Gets or sets whether layout items that correspond to IList properties will be added to the generated layout. By default, these layout items will contain embedded <see cref="T:DevExpress.XtraGrid.GridControl"/>s to display and edit IList object contents.</para>
</summary>
<value>True to generate layout items for IList properties; Default or False to exclude these properties from the generated layout.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AllowGeneratingNestedGroups">
<summary>
<para>Gets or sets whether nested layout groups are generated to present fields of business object properties.</para>
</summary>
<value>True, if nested groups are generated for business object properties; Default or False if nested groups are not generated.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AutoRetrieveFields">
<summary>
<para>Gets or sets whether a layout is re-built each time a new value is assigned to the <see cref="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource"/> property.</para>
</summary>
<value>true, if a layout is re-built each time a new value is assigned to the <see cref="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource"/> property; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.ControlsManager">
<summary>
<para>Gets an object that identifies which editors can be used to edit data of specific types.</para>
</summary>
<value>A DevExpress.XtraDataLayout.ControlsManager object.</value>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.CreateLayoutCreator">
<summary>
<para>For internal use.</para>
</summary>
<returns></returns>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecord">
<summary>
<para>Gets an object that specifies the current data record.</para>
</summary>
<value>An object that specifies the current data record.</value>
</member>
<member name="E:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecordChanged">
<summary>
<para>Fires when the current position in the bound data source changes.</para>
</summary>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecordPosition">
<summary>
<para>Gets or sets the index of the data record to be displayed in the control.</para>
</summary>
<value>An integer value that specifies the index of the data record to be displayed in the control.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.DataMember">
<summary>
<para>Gets or sets the data source member which supplies data to the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/>'s editors.</para>
</summary>
<value>A string value representing the data source member.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource">
<summary>
<para>Gets or sets the data source providing data for editors that are created by the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> control.</para>
</summary>
<value>The object used as the data source.</value>
</member>
<member name="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieved">
<summary>
<para>Fires after a layout is generated at runtime. Allows you to customize settings of individual generated layout items and editors.</para>
</summary>
</member>
<member name="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieving">
<summary>
<para>Fires before a layout item with an embedded editor is generated and thus, prior to the editor's data binding. It allows you to customize the type of editor to be generated, modify editor binding settings and hide certain editors.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.ForceInitialize">
<summary>
<para>Forces the control to finish its initialization.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetControlByFieldName(System.String)">
<summary>
<para></para>
</summary>
<param name="fieldName"></param>
<returns></returns>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetCurrentRecordFieldValue(System.String)">
<summary>
<para>Returns the current record's cell value in the specified data field.</para>
</summary>
<param name="fieldName">A string value that specifies the data field name.</param>
<returns>An object that specifies the cell value.</returns>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetItemByFieldName(System.String)">
<summary>
<para></para>
</summary>
<param name="fieldName"></param>
<returns></returns>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetLayoutElementsBindingsInfo">
<summary>
<para>Returns information on the layout column count and binding settings of public properties in the data source.</para>
</summary>
<returns>A value that specifies information on layout element binding settings.</returns>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetLayoutElementsBindingsInfo(System.Collections.ICollection)">
<summary>
<para>Returns the layout element binding information from the specified PropertyDescriptor collection.</para>
</summary>
<param name="propertyDescriptorCollection">A collection of PropertyDescriptor objects.</param>
<returns>A value that specifies the layout element binding information.</returns>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.RecordCount">
<summary>
<para>Returns the number of records in the bound data source.</para>
</summary>
<value>The number of records in the bound data source.</value>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.RetrieveFields">
<summary>
<para>Creates layout items for all public fields in the bound data source.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.RetrieveFields(DevExpress.XtraDataLayout.RetrieveFieldsParameters)">
<summary>
<para>Creates layout items for all public fields in the bound data source and allows you to customize general binding and layout settings.</para>
</summary>
<param name="parameters">An object that provides additional binding and layout customization options.</param>
</member>
<member name="M:DevExpress.XtraDataLayout.DataLayoutControl.SetCurrentRecordFieldValue(System.String,System.Object)">
<summary>
<para>Assigns the specified value to the current record's specified field.</para>
</summary>
<param name="fieldName">A string value that specifies the field name.</param>
<param name="value">An object that specifies the assigned value.</param>
</member>
<member name="P:DevExpress.XtraDataLayout.DataLayoutControl.Site">
<summary>
<para>Gets or sets the site associated with the current <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/>.</para>
</summary>
<value>A System.ComponentModel.ISite object.</value>
</member>
<member name="T:DevExpress.XtraDataLayout.FieldRetrievedEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieved"/> event.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.FieldRetrievedEventArgs"/> class.</para>
</summary>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.Control">
<summary>
<para>Gets the control embedded in the layout item.</para>
</summary>
<value>The control embedded in the layout item.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.FieldName">
<summary>
<para>Gets the data source field to which the editor is bound.</para>
</summary>
<value>The bound data source field.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.Item">
<summary>
<para>Gets the created Layout Item.</para>
</summary>
<value>The created layout item.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.RepositoryItem">
<summary>
<para>Gets a <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> descendant that corresponds to the created editor. This property is in effect when a DevExpress editor (<see cref="T:DevExpress.XtraEditors.BaseEdit"/> descendant) is embedded in the created layout item.</para>
</summary>
<value>The Repository Item that corresponds to a DevExpress editor embedded in the created layout item.</value>
</member>
<member name="T:DevExpress.XtraDataLayout.FieldRetrievingEventArgs">
<summary>
<para>Provides data for the <see cref="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieving"/> event.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.FieldRetrievingEventArgs"/> class.</para>
</summary>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataSourceNullValue">
<summary>
<para>Gets or sets the value used to initialize the Binding.DataSourceNullValue property for the auto-generated editor.</para>
</summary>
<value>The value used to initialize the Binding.DataSourceNullValue property of the auto-generated editor.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataSourceUpdateMode">
<summary>
<para>Gets or sets the value used to initialize the Binding.DataSourceUpdateMode property for the auto-generated editor.</para>
</summary>
<value>The value used to initialize the Binding.DataSourceUpdateMode property of the auto-generated editor.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataType">
<summary>
<para>Gets the bound field's data type.</para>
</summary>
<value>The bound field's data type.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.EditorType">
<summary>
<para>Gets or sets the type of the editor to be created.</para>
</summary>
<value>The type of the editor to be created.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.FieldName">
<summary>
<para>Gets the data source field to which the editor is bound.</para>
</summary>
<value>The bound data source field.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.Handled">
<summary>
<para>Gets or sets whether the event is handled and the customized event parameters must be applied after the event handler is completed.</para>
</summary>
<value>true, to apply the customized event parameters after your event handler is completed; false, to discard the customizations made via the event.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.PropertyName">
<summary>
<para>Gets or sets the name of the editor's property to which the data source field is bound.</para>
</summary>
<value>The name of the editor's property to which the data source field is bound.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.Visible">
<summary>
<para>Gets or sets the layout item's (editor's) visibility.</para>
</summary>
<value>The layout item's (editor's) visibility.</value>
</member>
<member name="T:DevExpress.XtraDataLayout.RetrieveFieldsParameters">
<summary>
<para>Contains parameters for the DataLayoutControl.RetrieveFields method.</para>
</summary>
</member>
<member name="M:DevExpress.XtraDataLayout.RetrieveFieldsParameters.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.RetrieveFieldsParameters"/> class with the specified settings.</para>
</summary>
</member>
<member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.ColumnCount">
<summary>
<para>Gets or sets the number of columns in the layout that will be generated.</para>
</summary>
<value>An integer value that specifies the number of columns in the layout that will be generated.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.CustomListParameters">
<summary>
<para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
</summary>
<value></value>
</member>
<member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.DataSourceNullValue">
<summary>
<para>Gets or sets the default value used to initialize the Binding.DataSourceNullValue property for all auto-generated editors.
This property identifies the value to be stored in the data source if the editor's value is null or empty.</para>
</summary>
<value>The default value used to initialize the Binding.DataSourceNullValue property of all auto-generated editors.</value>
</member>
<member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.DataSourceUpdateMode">
<summary>
<para>Gets or sets the default value used to initialize the Binding.DataSourceUpdateMode property for all auto-generated editors.
This property indicates when changes to the bound editor property are propagated to the data source.</para>
</summary>
<value>The default value used to initialize the Binding.DataSourceUpdateMode property of all auto-generated editors.</value>
</member>
<member name="N:DevExpress.XtraLayout">
<summary>
<para>Contains the classes that encapsulate the Layout Control's main functionality.</para>
</summary>
</member>
<member name="T:DevExpress.XtraLayout.AutoAlignMode">
<summary>
<para>Obsolete. Instead use the options provided by the <see cref="T:DevExpress.XtraLayout.TextAlignMode"/> class.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoAlignMode.AlignGlobal">
<summary>
<para>This member is obsolete. Controls are aligned throughout the LayoutControl.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoAlignMode.AlignLocal">
<summary>
<para>This member is obsolete. Controls are aligned independently within layout groups.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoAlignMode.AutoSize">
<summary>
<para>This member is obsolete. The auto-size feature is enabled.</para>
</summary>
</member>
<member name="T:DevExpress.XtraLayout.AutoSizeModes">
<summary>
<para>Enumerates the options that specify how a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>'s size is changed when it is positioned within another LayoutControl.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoSizeModes.ResizeToMinSize">
<summary>
<para>The embedded LayoutControl's size is fixed and is equal to its minimum size.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoSizeModes.UseMinAndMaxSize">
<summary>
<para>The embedded LayoutControl's size can vary between its minimum and maximum sizes.</para>
</summary>
</member>
<member name="F:DevExpress.XtraLayout.AutoSizeModes.UseMinSizeAndGrow">
<summary>
<para>The embedded LayoutControl's minimum size is restricted; while its maximum size is unlimited.</para>
</summary>
</member>
<member name="T:DevExpress.XtraLayout.BaseLayoutItem">
<summary>
<para>Represents the base class for layout items.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Accept(DevExpress.XtraLayout.Utils.BaseVisitor)">
<summary>
<para>Invokes the Visit method of the specified visitor for each layout item that belongs to the current layout item.</para>
</summary>
<param name="visitor">A DevExpress.XtraLayout.Utils.BaseVisitor class descendant.</param>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.AllowHide">
<summary>
<para>Gets or sets whether the item can be hidden to the Customization Form.</para>
</summary>
<value>true if the item can be hidden to the Customization Form; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.AppearanceItemCaption">
<summary>
<para>Gets the appearance settings used to paint a layout item's caption.</para>
</summary>
<value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the layout item's caption.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Assign(DevExpress.XtraLayout.BaseLayoutItem)">
<summary>
<para>Assigns the specified object's property values to the current object's corresponding properties.</para>
</summary>
<param name="item">The object whose property values to assign to the current object's corresponding properties.</param>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.BeginInit">
<summary>
<para>Starts the component's initialization.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.BestFitWeight">
<summary>
<para>Gets or sets the width of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> relative to other items' width after the <see cref="M:DevExpress.XtraLayout.LayoutControl.BestFit"/> method has been called.</para>
</summary>
<value>An Integer value that is the proportion of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>'s width to other items' width after the <see cref="M:DevExpress.XtraLayout.LayoutControl.BestFit"/> method has been called.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.BindingContext">
<summary>
<para>Gets or sets the BindingContext for the item.</para>
</summary>
<value>A BindingContext for the item.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Bounds">
<summary>
<para>Gets the layout item's bounding rectangle.</para>
</summary>
<value>A <see cref="T:System.Drawing.Rectangle"/> structure that specifies the bounding rectangle.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.CanMove(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
<summary>
<para>Returns whether the layout item can be moved to a specific position.</para>
</summary>
<param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
<returns>true if the layout item can be moved to a specific position; otherwise, false.</returns>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.Click">
<summary>
<para>Fires when the current item is clicked.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Clone(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.ILayoutControl)">
<summary>
<para>Creates a copy of the current layout item.</para>
</summary>
<param name="cloneParent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that represents the group to which the created layout item belongs.</param>
<param name="cloneOwner">An object that implements the DevExpress.XtraLayout.ILayoutControl interface, and owns the created layout item.</param>
<returns>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that represents an exact copy of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> instance.</returns>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.CustomDraw">
<summary>
<para>Allows you to custom paint the current item.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.CustomizationFormText">
<summary>
<para>Gets or sets the layout item's caption within the Customization Form.</para>
</summary>
<value>A string value that specifies the layout item's caption within the Customization Form.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.DataBindings">
<summary>
<para>Gets the data bindings for the layout item.</para>
</summary>
<value>A ControlBindingsCollection that contains the Binding objects for the item</value>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.DoubleClick">
<summary>
<para>Fires when the current item is clicked.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.EndInit">
<summary>
<para>Finishes the component's initialization.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Expanded">
<summary>
<para>Not supported.</para>
</summary>
<value>Always True.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.GetDefaultText">
<summary>
<para>Gets the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</para>
</summary>
<returns>A string that specifies the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</returns>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.GetDisplayText">
<summary>
<para>Returns the <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>'s <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> value without HTML tags and hotkey prefixes (the "&" symbol).</para>
</summary>
<returns>The <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>'s display text.</returns>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Height">
<summary>
<para>Gets or sets the layout item's height.</para>
</summary>
<value>An integer that specifies the layout item's height.</value>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.Hidden">
<summary>
<para>Fires after an item has been hidden.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.HideToCustomization">
<summary>
<para>Hides the item to the Customization Form.</para>
</summary>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.Hiding">
<summary>
<para>Fires when the item is about to be hidden (when dragging the item and dropping it onto on the Customization Form).</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Invalidate">
<summary>
<para>Invalidates the region which is occupied by the layout item.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsDisposing">
<summary>
<para>Gets whether the current item is being disposed of.</para>
</summary>
<value>true if the current item is being disposed of; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsGroup">
<summary>
<para>Gets whether the current layout item represents a Layout Group.</para>
</summary>
<value>true if the layout item represents a Layout Group; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsHidden">
<summary>
<para>Gets whether the layout item is hidden.</para>
</summary>
<value>true if the layout item is hidden; otheriwse, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsUpdateLocked">
<summary>
<para>Gets whether the layout item has been locked for updating.</para>
</summary>
<value>true if the layout item is locked; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Location">
<summary>
<para>Gets or sets the coordinates of the layout item's top left corner.</para>
</summary>
<value>A <see cref="T:System.Drawing.Point"/> structure that specifies the coordinates of the layout item's top left corner.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.MaxSize">
<summary>
<para>Gets or sets the maximum size of the layout item.</para>
</summary>
<value>A <see cref="T:System.Drawing.Size"/> structure that defines the item's maximum width and height.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.MinSize">
<summary>
<para>Gets or sets the item's minimum size.</para>
</summary>
<value>A <see cref="T:System.Drawing.Size"/> structure that defines the item's minimum width and height.</value>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.MouseDown">
<summary>
<para>Occurs when the mouse pointer is over a layout item and a mouse button is pressed.</para>
</summary>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.MouseUp">
<summary>
<para>Occurs when the mouse button is released if it was pressed within a layout item.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
<summary>
<para>Moves the item to the specified visual position within the LayoutControl.</para>
</summary>
<param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item within the LayoutControl.</param>
<param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified baseItem.</param>
<returns>true if the item has been successfully moved to a new position; otherwise, false.</returns>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType,DevExpress.XtraLayout.Utils.MoveType)">
<summary>
<para>Moves the item to the specified visual position within the LayoutControl.</para>
</summary>
<param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item within the LayoutControl.</param>
<param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified baseItem.</param>
<param name="moveType">A <see cref="T:DevExpress.XtraLayout.Utils.MoveType"/> enumeration value that specifies how a layout item is inserted to another position.</param>
<returns>true, if the item has been successfully moved to a new position; otherwise, false.</returns>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
<summary>
<para>Moves the item to the specified position within the LayoutControl.</para>
</summary>
<param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
<returns>true if the item has been successfully moved to a new position; otherwise, false.</returns>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Name">
<summary>
<para>Gets or sets the layout item's name.</para>
</summary>
<value>A <see cref="T:System.String"/> value that specifies the item's name.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsCustomization">
<summary>
<para>Contains options that specify which operations can be performed on the layout item at runtime.</para>
</summary>
<value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions"/> object that contains the corresponding options.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsIconToolTip">
<summary>
<para>This member is obsolete. Use the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip"/> property instead.</para>
</summary>
<value>A BaseLayoutItemToolTipOptions object.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsItemToolTip">
<summary>
<para>This member is obsolete. Use the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip"/> property instead.</para>
</summary>
<value>A BaseLayoutItemToolTipOptions object.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsTableLayoutItem">
<summary>
<para>Provides access to the options that specify how a layout item is arranged within a table layout.</para>
</summary>
<value>An object that contains the layout item's arrangement options.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip">
<summary>
<para>Contains options that allow tooltips to be assigned to layout items and their images.</para>
</summary>
<value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip"/> object providing corresponding options.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Owner">
<summary>
<para>Gets or set the LayoutControl that owns the current layout item.</para>
</summary>
<value>A LayoutControl control.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Padding">
<summary>
<para>Gets or sets the amount of space in pixels between the item's borders and its contents.</para>
</summary>
<value>A DevExpress.XtraLayout.Utils.Padding object that contains inner indents between the layout item's borders and its contents.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.PaintAppearanceItemCaption">
<summary>
<para>Provides access to the appearance settings currently used to paint the layout item.</para>
</summary>
<value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains the corresponding appearance settings.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Parent">
<summary>
<para>Gets or sets the group that owns the current item.</para>
</summary>
<value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> or its descendant that owns the current item.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.ParentName">
<summary>
<para>Gets or sets the name of the item's parent.</para>
</summary>
<value>A string that specifies the name of the item's parent.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization">
<summary>
<para>Restores the current layout item from the Customization Form and adds it to the root group with the default layout type.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
<summary>
<para>Restores the current layout item from the Customization Form and adds it to the parent group of the specified item at the specified visual position.</para>
</summary>
<param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant which represents the layout item within the LayoutControl.</param>
<param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the restored item relative to the baseItem.</param>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
<summary>
<para>Restores the current layout item from the Customization Form and displays it at the specified position within the LayoutControl.</para>
</summary>
<param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.LayoutGroup)">
<summary>
<para>Restores the current layout item from the Customization Form and adds it to the specified group with the default layout type.</para>
</summary>
<param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> descendant which represents the layout group that the current layout item will be added to.</param>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Selected">
<summary>
<para>Gets or sets the selection state of the current item.</para>
</summary>
<value>true if the current layout item is selected; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.ShowInCustomizationForm">
<summary>
<para>Gets or sets whether the layout item is displayed within the Customization Form when the item is hidden.</para>
</summary>
<value>true if the layout item is displayed within the Customization Form when it's hidden; otherwise, false.</value>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.Showing">
<summary>
<para>Fires when the item is about to be added to the layout (by dragging it from the Customization Form).</para>
</summary>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.Shown">
<summary>
<para>Fires after an item has been made visible.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Size">
<summary>
<para>Gets or sets the layout item's size.</para>
</summary>
<value>A <see cref="T:System.Drawing.Size"/> structure that defines the item's width and height.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing">
<summary>
<para>Gets or sets the outer indents of the item's borders.</para>
</summary>
<value>A DevExpress.XtraLayout.Utils.Padding object that contains the outer indents of the layout item's borders.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.StartNewLine">
<summary>
<para>Gets or sets whether the current item starts a new row within a flow layout.</para>
</summary>
<value>true, if the layout item starts a new row within the flow layout; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Tag">
<summary>
<para>Gets or sets an object that contains data on the current layout item.</para>
</summary>
<value>An object that contains data on the layout item.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Text">
<summary>
<para>Gets or sets the text associated with the layout item.</para>
</summary>
<value>A string that specifies the layout item's text.</value>
</member>
<member name="E:DevExpress.XtraLayout.BaseLayoutItem.TextChanged">
<summary>
<para>Fires after the layout item's text has been changed.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextLocation">
<summary>
<para>Gets or sets the item caption position.</para>
</summary>
<value>A <see cref="T:DevExpress.Utils.Locations"/> value that specifies the item caption position.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextSize">
<summary>
<para>Gets or sets the size of the text region.</para>
</summary>
<value>A <see cref="T:System.Drawing.Size"/> structure that defines the width and height of the item's text region.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextToControlDistance">
<summary>
<para>Gets or sets the distance between the control displayed within the layout item and the text region.</para>
</summary>
<value>An integer that specifies the distance, in pixels.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextVisible">
<summary>
<para>Gets or sets whether the text region is visible.</para>
</summary>
<value>true, if the text region is visible; otherwise, false. For <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/>s, the TextVisible property's default value
is dependent on the type of control embedded in this layout item.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.TypeName">
<summary>
<para>Gets the name of the current layout item's type.</para>
</summary>
<value>A string that represents the name of the current layout item's type.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItem.Update">
<summary>
<para>Updates the region occupied by the layout item.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.ViewInfo">
<summary>
<para>Gets the object which contains the information used to render the layout item.</para>
</summary>
<value>A DevExpress.XtraLayout.ViewInfo.BaseLayoutItemViewInfo object.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Visibility">
<summary>
<para>Allows you to hide the item from the Layout Control and Customization Form.</para>
</summary>
<value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutVisibility"/> value that specifies whether the item is visible in the layout and the Customization Form.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Visible">
<summary>
<para>Gets whether the layout item is visible.</para>
</summary>
<value>true if the layout item is visible; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Width">
<summary>
<para>Gets or sets the layout item's width.</para>
</summary>
<value>An integer that specifies the layout item's width.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.X">
<summary>
<para>Gets or sets the X coordinate of the item's top left corner relative to the parent's top left corner.</para>
</summary>
<value>An integer which specifies the X coordinate of the item's top left corner.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItem.Y">
<summary>
<para>Gets or sets the Y coordinate of the item's top left corner relative to the parent's top left corner.</para>
</summary>
<value>An integer which specifies the Y coordinate of the item's top left corner.</value>
</member>
<member name="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions">
<summary>
<para>Contains options that specify which operations can be performed on a layout item at runtime.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.#ctor(DevExpress.XtraLayout.BaseLayoutItem)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions"/> class.</para>
</summary>
<param name="owner">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that will own the created object.</param>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.AllowDrag">
<summary>
<para>Gets or sets whether the current layout item/group can be dragged-and-dropped to another position.</para>
</summary>
<value>An ItemDragDropMode value that specifies whether the current item/group can be dragged-and-dropped to another position.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.AllowDrop">
<summary>
<para>Gets or sets whether other items can be dragged-and-dropped onto the current layout item/group.</para>
</summary>
<value>An ItemDragDropMode value that specifies whether other items can be dragged-and-dropped onto the current layout item/group.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies options from the specified object to the current object.</para>
</summary>
<param name="options">A <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant whose settings are assigned to the current object.</param>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.CanDrag">
<summary>
<para>Returns whether the layout item can be dragged-and-dropped to another position.</para>
</summary>
<returns>true if the layout item can be dragged-and-dropped to another position; otherwise, false.</returns>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.CanDrop">
<summary>
<para>Returns whether other layout items can be dragged-and-dropped onto the current layout item.</para>
</summary>
<returns>true if other layout items can be dragged-and-dropped onto the current layout item; otherwise, false.</returns>
</member>
<member name="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip">
<summary>
<para>Contains options that allow tooltips to be assigned to layout items.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip"/> class.</para>
</summary>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.AllowHtmlString">
<summary>
<para>Gets or sets whether HTML formatting tags can be used to format the tooltip's text.</para>
</summary>
<value>True if HTML formatting tags can be used to format the tooltip's text; False if not; Default uses the <see cref="P:DevExpress.Utils.ToolTipController.AllowHtmlText"/> global setting.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.Assign(DevExpress.Utils.Controls.BaseOptions)">
<summary>
<para>Copies options from the specified object to the current object.</para>
</summary>
<param name="options">A <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant whose settings are assigned to the current object.</param>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.CanShowIconToolTip">
<summary>
<para>Returns whether a tooltip for a layout item's image can be displayed.</para>
</summary>
<returns>true if a tooltip for a layout item's image can be displayed; otherwise, false.</returns>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.CanShowToolTip">
<summary>
<para>Returns whether a tooltip for a layout item's caption can be displayed.</para>
</summary>
<returns>true if a tooltip for a layout item's caption can be displayed; otherwise, false.</returns>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.EnableIconToolTip">
<summary>
<para>Gets or sets whether a tooltip displayed for the layout item's image is enabled.</para>
</summary>
<value>true if a tooltip displayed for the layout item's image is enabled; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconAllowHtmlString">
<summary>
<para>Gets or sets whether HTML tags can be used to format the tooltip text displayed for the item's icon.</para>
</summary>
<value>True if HTML tags can be used to format the tooltip text; False if not; Default uses the <see cref="P:DevExpress.Utils.ToolTipController.AllowHtmlText"/> global setting.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconImmediateToolTip">
<summary>
<para>Gets or sets whether the tooltip for the layout item's icon is displayed immediately or after a delay.</para>
</summary>
<value>true, if the tooltip is displayed immediately; otherwise, false.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTip">
<summary>
<para>Specifies the text of the tooltip displayed when the mouse cursor hovers over the layout item's image.</para>
</summary>
<value>A string that specifies the tooltip's text.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTipIconType">
<summary>
<para>Gets or sets the type of the icon for the tooltip that is displayed when the mouse cursor hovers over the layout item's image.</para>
</summary>
<value>A <see cref="T:DevExpress.Utils.ToolTipIconType"/> value.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTipTitle">
<summary>
<para>Gets or sets the title of the tooltip that is displayed when the mouse cursor hovers over the layout item's image.</para>
</summary>
<value>A string that specifies the tooltip's title.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ImmediateToolTip">
<summary>
<para>Gets or sets whether the tooltip is displayed immediately or after a delay.</para>
</summary>
<value>true, if the tooltip is displayed immediately; otherwise, false.</value>
</member>
<member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ShouldSerializeCore(System.ComponentModel.IComponent)">
<summary>
<para>This method supports the internal infrastructure and is not intended to be called directly from your code.</para>
</summary>
<param name="owner">An IComponent object.</param>
<returns>A Boolean value.</returns>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTip">
<summary>
<para>Specifies the text of the tooltip displayed when the mouse cursor hovers over the layout item's caption, and by default over its image.</para>
</summary>
<value>A string that specifies the tooltip's text.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTipIconType">
<summary>
<para>Gets or sets the type of the icon for the tooltip that is displayed when the mouse cursor hovers over the layout item's caption, and by default over its image.</para>
</summary>
<value>A <see cref="T:DevExpress.Utils.ToolTipIconType"/> value.</value>
</member>
<member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTipTitle">
<summary>
<para>Gets or sets the title of the tooltip that is displayed when the mouse cursor hovers over the layout item's caption, and by default over its image.</para>
</summary>
<value>A string that specifies the tooltip's title.</value>
</member>
<member name="T:DevExpress.XtraLayout.ColumnDefinition">
<summary>
<para>Defines a column in a table layout.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor">
<summary>
<para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the default settings.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup)">
<summary>
<para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the specified owner.</para>
</summary>
<param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> object.</param>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType)">
<summary>
<para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the specified settings.</para>
</summary>
<param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> object.</param>
<param name="size">The width of the created column. This value is assigned to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.Width"/> property.</param>
<param name="sizingType">The size type of the created column. This value is assigned to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.SizeType"/> property.</param>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType,System.Boolean)">
<summary>
<para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with specified settings.</para>
</summary>
<param name="owner"></param>
<param name="size"></param>
<param name="sizingType"></param>
<param name="visible"></param>
</member>
<member name="P:DevExpress.XtraLayout.ColumnDefinition.SizeType">
<summary>
<para>Gets or sets the column's size type in a table layout.</para>
</summary>
<value>A value that specifies the column's size type.</value>
</member>
<member name="P:DevExpress.XtraLayout.ColumnDefinition.Width">
<summary>
<para>Gets or sets the column width, in pixels or as a percentage, according to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.SizeType"/>.</para>
</summary>
<value>A value that specifies the column width.</value>
</member>
<member name="T:DevExpress.XtraLayout.ColumnDefinitions">
<summary>
<para>A column collection within a table layout.</para>
</summary>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinitions.#ctor(DevExpress.XtraLayout.ColumnDefinitions,DevExpress.XtraLayout.LayoutGroup)">
<summary>
<para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> class with the settings of the specified source object and with the specified owner.</para>
</summary>
<param name="source">An object whose settings are used to initialize the created object.</param>
<param name="ownerGroup">A layout group that owns the created object.</param>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinitions.#ctor(DevExpress.XtraLayout.LayoutGroup)">
<summary>
<para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> class with the specified owner.</para>
</summary>
<param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> object.</param>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinitions.Add(DevExpress.XtraLayout.ColumnDefinition)">
<summary>
<para>Adds a specified column to the table layout.</para>
</summary>
<param name="columnDefinition">An object that specifies the column to be added.</param>
<returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinitions.AddRange(DevExpress.XtraLayout.ColumnDefinition[])">
<summary>
<para>Adds an array of columns to the table layout.</para>
</summary>
<param name="items">An array of <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> objects to be added to the table layout.</param>
</member>
<member name="M:DevExpress.XtraLayout.ColumnDefinitions.Insert(System.Int32,DevExpress.XtraLayout.ColumnDefinition,System.Boolean)">
<summary>
<para>Inserts an element into the collection at the specified index.</para>
</summary>
<param name="index">The zero-based index at which a columnDefinition should be inserted.</param>