Home
last modified time | relevance | path

Searched refs:CellSpacing (Results 1 – 25 of 106) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI.WebControls/
H A DTableStyle.cs46 CellSpacing = 0x00040000, enumerator
102 public virtual int CellSpacing { property in System.Web.UI.WebControls.TableStyle
104 if (!CheckBit ((int) TableStyles.CellSpacing))
112 SetBit ((int) TableStyles.CellSpacing);
166 int i = CellSpacing; in AddAttributesToRender()
227 Copy ("CellSpacing", TableStyles.CellSpacing, s); in CopyFrom()
254 Merge ("CellSpacing", TableStyles.CellSpacing, s); in MergeWith()
267 if (CheckBit ((int) TableStyles.CellSpacing)) in Reset()
H A DTable.cs120 public virtual int CellSpacing { property in System.Web.UI.WebControls.Table
124 return TableStyle.CellSpacing;
126 set { TableStyle.CellSpacing = value; }
H A DRadioButtonList.cs73 public virtual int CellSpacing { property in System.Web.UI.WebControls.RadioButtonList
78 return ((TableStyle) ControlStyle).CellSpacing;
82 ((TableStyle) ControlStyle).CellSpacing = value;
H A DCheckBoxList.cs61 public virtual int CellSpacing { property in System.Web.UI.WebControls.CheckBoxList
62 get { return TableStyle.CellSpacing; }
63 set { TableStyle.CellSpacing = value; }
H A DBaseDataList.cs101 public virtual int CellSpacing { property in System.Web.UI.WebControls.BaseDataList
105 return TableStyle.CellSpacing;
107 set { TableStyle.CellSpacing = value; }
H A DWizard.cs330 public virtual int CellSpacing { property in System.Web.UI.WebControls.Wizard
333 return ((TableStyle) ControlStyle).CellSpacing;
337 ((TableStyle) ControlStyle).CellSpacing = value;
951 contentTable.CellSpacing = 5; in CreateControlHierarchy_LayoutTemplate()
990 contentTable.CellSpacing = 0; in CreateControlHierarchy()
1135 t.CellSpacing = 5; in AddNavButtonsTable()
1235 stepDatalist.CellSpacing = 0; in CreateSideBar()
1293 style.CellSpacing = 0; in CreateControlStyle()
1849 this.CellSpacing = 0; in InitTable()
H A DFormView.cs375 public virtual int CellSpacing { property in System.Web.UI.WebControls.FormView
378 return ((TableStyle) ControlStyle).CellSpacing;
382 set { ((TableStyle) ControlStyle).CellSpacing = value; }
838 if (CellSpacing != 0) in ModifiedOuterTableStylePropertyName()
921 style.CellSpacing = 0; in CreateControlStyle()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/System.Web.UI.WebControls/
H A DTableStyleTest.cs108 Assert.AreEqual (-1, ts.CellSpacing, "CellSpacing"); in DefaultProperties()
127 ts.CellSpacing = -1; in NullProperties()
128 Assert.AreEqual (-1, ts.CellSpacing, "CellSpacing"); in NullProperties()
187 ts.CellSpacing = Int32.MinValue; in CellSpacing_Invalid()
239 ts.CellSpacing = 2; in GetTableStyle()
249 Assert.AreEqual (2, ts.CellSpacing, "CellSpacing"); in CheckTableStyle()
300 ts.CellSpacing = 3; in CopyFrom()
338 ts.CellSpacing = 3; in MergeWith()
346 Assert.AreEqual (3, ts.CellSpacing, "CellSpacing"); in MergeWith()
398 ts.CellSpacing = 1; in FillStyleAttributes_NotCss()
[all …]
H A DTableTest.cs97 Assert.AreEqual (-1, t.CellSpacing, "CellSpacing"); in DefaultProperties()
141 t.CellSpacing = -1; in NullProperties()
142 Assert.AreEqual (-1, t.CellSpacing, "CellSpacing"); in NullProperties()
164 t.CellSpacing = 2; in CleanProperties()
165 Assert.AreEqual (2, t.CellSpacing, "CellSpacing"); in CleanProperties()
181 t.CellSpacing = -1; in CleanProperties()
182 Assert.AreEqual (-1, t.CellSpacing, "-CellSpacing"); in CleanProperties()
253 t.CellSpacing = 2; in Render()
256 t.CellSpacing = -1; in Render()
353 t.CellSpacing = 2; in CreateControlStyle()
[all …]
H A DCheckBoxListTest.cs144 Assert.AreEqual (c.CellSpacing, -1, "A2"); in Defaults()
404 c.CellSpacing = Int32.MaxValue; in CleanProperties()
405 Assert.AreEqual (c.CellSpacing, Int32.MaxValue, "A2"); in CleanProperties()
436 c.CellSpacing = -2; in CellSpacingTooLow()
H A DRadioButtonListTest.cs142 Assert.AreEqual (-1, r.CellSpacing, "A2"); in RadioButtonList_Constructor()
169 r.CellSpacing = 5; in CellSpacingProperties()
170 Assert.AreEqual (5, r.CellSpacing, "setting"); in CellSpacingProperties()
H A DCalendarTest.cs92 Assert.AreEqual (0, c.CellSpacing, "CellSpacing"); in Calendar_DefaultValues()
340 c.CellSpacing = -2; in CellSpacingException()
444 p.CellSpacing = 20; in Calendar_ViewState()
478 Assert.AreEqual (20, copy.CellSpacing, "CellSpacing"); in Calendar_ViewState()
H A DDataListTest.cs242 Assert.AreEqual (0, dl.CellSpacing, "CellSpacing"); in DefaultProperties()
261 dl.CellSpacing = 0; in NullProperties()
262 Assert.AreEqual (0, dl.CellSpacing, "CellSpacing"); in NullProperties()
347 dl.CellSpacing = 1; in CleanProperties()
348 Assert.AreEqual (1, dl.CellSpacing, "CellSpacing"); in CleanProperties()
423 dl.CellSpacing = 0; in CleanProperties()
424 Assert.AreEqual (0, dl.CellSpacing, "-CellSpacing"); in CleanProperties()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DTableStyle.cs110 public virtual int CellSpacing { property in System.Web.UI.WebControls.TableStyle
188 int n = CellSpacing; in AddAttributesToRender()
268 this.CellSpacing = ts.CellSpacing; in CopyFrom()
321 this.CellSpacing = ts.CellSpacing; in MergeWith()
H A DTable.cs135 public virtual int CellSpacing { property in System.Web.UI.WebControls.Table
140 return((TableStyle)ControlStyle).CellSpacing;
143 ((TableStyle)ControlStyle).CellSpacing = value;
H A DRadioButtonList.cs68 public virtual int CellSpacing { property in System.Web.UI.WebControls.RadioButtonList
73 return ((TableStyle)ControlStyle).CellSpacing;
76 ((TableStyle)ControlStyle).CellSpacing = value;
H A DCheckBoxList.cs84 public virtual int CellSpacing { property in System.Web.UI.WebControls.CheckBoxList
89 return ((TableStyle)ControlStyle).CellSpacing;
92 ((TableStyle)ControlStyle).CellSpacing = value;
H A DBaseDataList.cs113 public virtual int CellSpacing { property in System.Web.UI.WebControls.BaseDataList
118 return ((TableStyle)ControlStyle).CellSpacing;
121 ((TableStyle)ControlStyle).CellSpacing = value;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/System.Web.UI.HtmlControls/
H A DHtmlTableTest.cs71 Assert.AreEqual (-1, t.CellSpacing, "CellSpacing"); in DefaultProperties()
105 t.CellSpacing = -1; in EmptyProperties()
106 Assert.AreEqual (-1, t.CellSpacing, "CellSpacing"); in EmptyProperties()
136 t.CellSpacing = Int32.MaxValue; in MaxInt32()
137 Assert.AreEqual (Int32.MaxValue, t.CellSpacing, "CellSpacing"); in MaxInt32()
150 t.CellSpacing = Int32.MinValue; in MinInt32()
151 Assert.AreEqual (Int32.MinValue, t.CellSpacing, "CellSpacing"); in MinInt32()
228 t.CellSpacing = 6; in Render_Table()
/dports/games/widelands/widelands-build21/src/wui/
H A Dinputqueuedisplay.cc181 cache_size_ * (CellWidth + CellSpacing) + pbs + ctrl_b_size + 2 * Border, total_height_); in max_size_changed()
220 point.x = Border + (no_capacity_buttons_ ? 0 : CellWidth + CellSpacing); in draw()
223 for (; nr_inputs_to_draw; --nr_inputs_to_draw, point.x += CellWidth + CellSpacing) { in draw()
227 for (; nr_coming_to_draw; --nr_coming_to_draw, point.x += CellWidth + CellSpacing) { in draw()
232 for (; nr_missing_to_draw; --nr_missing_to_draw, point.x += CellWidth + CellSpacing) { in draw()
241 point.x = Border + CellWidth + CellSpacing + (cache_max_fill_ * (CellWidth + CellSpacing)) - in draw()
242 CellSpacing / 2 - pw / 2; in draw()
261 pos.x = (cache_size_ + 2) * (CellWidth + CellSpacing) + Border; in update_priority_buttons()
357 x = Border + (cache_size_ + 1) * (CellWidth + CellSpacing); in update_max_fill_buttons()
H A Dinputqueuedisplay.h45 enum { CellWidth = kWareMenuPicWidth, CellSpacing = 2, Border = 4, PriorityButtonSize = 10 }; enumerator
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGLNew/
H A DvtkOpenGLGPUVolumeRayCastMapper.cxx283 double CellSpacing[3]; member in vtkOpenGLGPUVolumeRayCastMapper::vtkInternal
717 input->GetSpacing(this->CellSpacing); in ComputeBounds()
733 this->CellSpacing[0]; in ComputeBounds()
736 this->CellSpacing[1]; in ComputeBounds()
739 this->CellSpacing[2]; in ComputeBounds()
742 this->CellSpacing[0]; in ComputeBounds()
745 this->CellSpacing[1]; in ComputeBounds()
748 this->CellSpacing[2]; in ComputeBounds()
773 this->CellSpacing[i]; in ComputeBounds()
780 this->CellSpacing[i]; in ComputeBounds()
[all …]
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGL2/
H A DvtkOpenGLGPUVolumeRayCastMapper.cxx282 double CellSpacing[3]; member in vtkOpenGLGPUVolumeRayCastMapper::vtkInternal
839 input->GetSpacing(this->CellSpacing); in ComputeBounds()
855 this->CellSpacing[0]; in ComputeBounds()
858 this->CellSpacing[1]; in ComputeBounds()
861 this->CellSpacing[2]; in ComputeBounds()
864 this->CellSpacing[0]; in ComputeBounds()
867 this->CellSpacing[1]; in ComputeBounds()
870 this->CellSpacing[2]; in ComputeBounds()
895 this->CellSpacing[i]; in ComputeBounds()
902 this->CellSpacing[i]; in ComputeBounds()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Handlers/
H A DTraceHandler.cs223 table.CellSpacing = 0; in ShowRequests()
251 table.CellSpacing = 0; in ShowRequests()
345 table.CellSpacing = 0; in CreateControlTable()
429 table.CellSpacing = 0; in CreateTraceTable()
509 table.CellSpacing = 0; in CreateTable()
563 table.CellSpacing = 0; in CreateDetailsTable()
/dports/devel/upp/upp/bazaar/Functions4U/Html/
H A Dhtmld.cpp144 HtmlTagD& HtmlTagD::CellSpacing(int i) { return Attr("CELLSPACING", i); } in CellSpacing() function in Upp::HtmlTagD
355 return !IsNull(h) ? HtmlTableD().Border(0).Width(-100).CellSpacing(0).CellPadding(0) / h in HtmlBlockD()
536 return HtmlTableD().Border(0).CellSpacing(0).CellPadding(0); in HtmlPackedTableD()
577 HtmlTagD table = HtmlTableD().CellSpacing(0).Border(2) in HtmlMenuD()
587 return HtmlTableD().Width(width).CellSpacing(0).CellPadding(1).Border(1).BgColor(WhiteGray) in HtmlDialogD()
589 % HtmlTableD().Width(-100).CellSpacing(4).CellPadding(0).Border(0).BgColor(WhiteGray); in HtmlDialogD()

12345