1 type derived from TableStyle
System.Web (1)
UI\WebParts\WebPartMenuStyle.cs (1)
20
public sealed class WebPartMenuStyle :
TableStyle
, ICustomTypeDescriptor {
10 instantiations of TableStyle
System.Web (10)
UI\WebControls\CheckBoxList.cs (1)
216
return new
TableStyle
(ViewState);
UI\WebControls\DataGrid.cs (1)
1217
TableStyle controlStyle = new
TableStyle
();
UI\WebControls\DataList.cs (1)
937
TableStyle controlStyle = new
TableStyle
();
UI\WebControls\DetailsView.cs (1)
1732
TableStyle controlStyle = new
TableStyle
();
UI\WebControls\FormView.cs (1)
1496
TableStyle controlStyle = new
TableStyle
();
UI\WebControls\GridView.cs (1)
2328
TableStyle controlStyle = new
TableStyle
();
UI\WebControls\RadioButtonList.cs (1)
215
return new
TableStyle
(ViewState);
UI\WebControls\Table.cs (1)
276
return new
TableStyle
(ViewState);
UI\WebControls\Wizard.cs (1)
1348
TableStyle controlStyle = new
TableStyle
();
UI\WebParts\WebZone.cs (1)
294
_partStyle = new
TableStyle
();
77 references to TableStyle
System.Web (77)
UI\WebControls\BaseDataList.cs (8)
96
return ((
TableStyle
)ControlStyle).CellPadding;
99
((
TableStyle
)ControlStyle).CellPadding = value;
118
return ((
TableStyle
)ControlStyle).CellSpacing;
121
((
TableStyle
)ControlStyle).CellSpacing = value;
280
return ((
TableStyle
)ControlStyle).GridLines;
283
((
TableStyle
)ControlStyle).GridLines = value;
302
return ((
TableStyle
)ControlStyle).HorizontalAlign;
305
((
TableStyle
)ControlStyle).HorizontalAlign = value;
UI\WebControls\CheckBoxList.cs (4)
65
return ((
TableStyle
)ControlStyle).CellPadding;
68
((
TableStyle
)ControlStyle).CellPadding = value;
89
return ((
TableStyle
)ControlStyle).CellSpacing;
92
((
TableStyle
)ControlStyle).CellSpacing = value;
UI\WebControls\DataGrid.cs (3)
250
return ((
TableStyle
)ControlStyle).BackImageUrl;
253
((
TableStyle
)ControlStyle).BackImageUrl = value;
1217
TableStyle
controlStyle = new TableStyle();
UI\WebControls\DataList.cs (2)
288
return ((
TableStyle
)ControlStyle).GridLines;
937
TableStyle
controlStyle = new TableStyle();
UI\WebControls\DetailsView.cs (11)
342
return((
TableStyle
)ControlStyle).BackImageUrl;
345
((
TableStyle
)ControlStyle).BackImageUrl = value;
428
return((
TableStyle
)ControlStyle).CellPadding;
431
((
TableStyle
)ControlStyle).CellPadding = value;
450
return((
TableStyle
)ControlStyle).CellSpacing;
453
((
TableStyle
)ControlStyle).CellSpacing = value;
885
return((
TableStyle
)ControlStyle).GridLines;
888
((
TableStyle
)ControlStyle).GridLines = value;
987
return((
TableStyle
)ControlStyle).HorizontalAlign;
990
((
TableStyle
)ControlStyle).HorizontalAlign = value;
1732
TableStyle
controlStyle = new TableStyle();
UI\WebControls\FormView.cs (11)
192
return ((
TableStyle
)ControlStyle).BackImageUrl;
195
((
TableStyle
)ControlStyle).BackImageUrl = value;
275
return ((
TableStyle
)ControlStyle).CellPadding;
278
((
TableStyle
)ControlStyle).CellPadding = value;
297
return ((
TableStyle
)ControlStyle).CellSpacing;
300
((
TableStyle
)ControlStyle).CellSpacing = value;
682
return ((
TableStyle
)ControlStyle).GridLines;
685
((
TableStyle
)ControlStyle).GridLines = value;
784
return ((
TableStyle
)ControlStyle).HorizontalAlign;
787
((
TableStyle
)ControlStyle).HorizontalAlign = value;
1496
TableStyle
controlStyle = new TableStyle();
UI\WebControls\GridView.cs (11)
394
return ((
TableStyle
)ControlStyle).BackImageUrl;
397
((
TableStyle
)ControlStyle).BackImageUrl = value;
476
return ((
TableStyle
)ControlStyle).CellPadding;
479
((
TableStyle
)ControlStyle).CellPadding = value;
497
return ((
TableStyle
)ControlStyle).CellSpacing;
500
((
TableStyle
)ControlStyle).CellSpacing = value;
873
return ((
TableStyle
)ControlStyle).GridLines;
876
((
TableStyle
)ControlStyle).GridLines = value;
929
return ((
TableStyle
)ControlStyle).HorizontalAlign;
932
((
TableStyle
)ControlStyle).HorizontalAlign = value;
2328
TableStyle
controlStyle = new TableStyle();
UI\WebControls\RadioButtonList.cs (4)
51
return ((
TableStyle
)ControlStyle).CellPadding;
54
((
TableStyle
)ControlStyle).CellPadding = value;
73
return ((
TableStyle
)ControlStyle).CellSpacing;
76
((
TableStyle
)ControlStyle).CellSpacing = value;
UI\WebControls\Table.cs (10)
57
return((
TableStyle
)ControlStyle).BackImageUrl;
60
((
TableStyle
)ControlStyle).BackImageUrl = value;
117
return((
TableStyle
)ControlStyle).CellPadding;
120
((
TableStyle
)ControlStyle).CellPadding = value;
140
return((
TableStyle
)ControlStyle).CellSpacing;
143
((
TableStyle
)ControlStyle).CellSpacing = value;
162
return((
TableStyle
)ControlStyle).GridLines;
165
((
TableStyle
)ControlStyle).GridLines = value;
192
return((
TableStyle
)ControlStyle).HorizontalAlign;
195
((
TableStyle
)ControlStyle).HorizontalAlign = value;
UI\WebControls\TableStyle.cs (6)
31
/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.
TableStyle
'/> class.</para>
39
/// Initializes a new instance of the <see cref='System.Web.UI.WebControls.
TableStyle
'/> class with the
250
TableStyle
ts = s as
TableStyle
;
308
TableStyle
ts = s as
TableStyle
;
UI\WebControls\Wizard.cs (5)
285
return ((
TableStyle
)ControlStyle).CellPadding;
288
((
TableStyle
)ControlStyle).CellPadding = value;
303
return ((
TableStyle
)ControlStyle).CellSpacing;
306
((
TableStyle
)ControlStyle).CellSpacing = value;
1348
TableStyle
controlStyle = new TableStyle();
UI\WebParts\WebZone.cs (2)
44
private
TableStyle
_partStyle;
291
public
TableStyle
PartStyle {