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