34 references to ScrollBars
System.Web.Entity.Design (2)
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.designer.cs (1)
95this._selectAdvancedTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
System\Data\WebControls\Design\EntityDataSourceStatementEditorForm.cs (1)
193this._statementTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
System.Windows.Forms (32)
winforms\Managed\System\WinForms\DataGridView.cs (7)
318private ScrollBars scrollBars; 500this.scrollBars = ScrollBars.Both; 4555DefaultValue(ScrollBars.Both), 4560public ScrollBars ScrollBars 4569if (!ClientUtils.IsEnumValid(value, (int)value, (int)ScrollBars.None, (int)ScrollBars.Both)) 4571throw new InvalidEnumArgumentException("value", (int)value, typeof(ScrollBars));
winforms\Managed\System\WinForms\DataGridViewMethods.cs (10)
934if ((this.scrollBars == ScrollBars.Both || this.scrollBars == ScrollBars.Vertical) /*&& 9068bool allowHorizScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Horizontal); 9069bool allowVertScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Vertical); 10327bool allowHorizScrollbar = ((this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Horizontal)) && 10329bool allowVertScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Vertical);
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (1)
280this.details.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
winforms\Managed\System\WinForms\TextBox.cs (13)
69private ScrollBars scrollBars = System.Windows.Forms.ScrollBars.None; 350if ((scrollBars & ScrollBars.Horizontal) == ScrollBars.Horizontal 355if ((scrollBars & ScrollBars.Vertical) == ScrollBars.Vertical) { 419DefaultValue(ScrollBars.None), 422public ScrollBars ScrollBars { 429if (!ClientUtils.IsEnumValid(value, (int)value, (int)ScrollBars.None, (int)ScrollBars.Both)){ 430throw new InvalidEnumArgumentException("value", (int)value, typeof(ScrollBars)); 442if(Multiline && !WordWrap && (ScrollBars & ScrollBars.Horizontal) != 0) { 445if(Multiline && (ScrollBars & ScrollBars.Vertical) != 0) {
winforms\Managed\System\WinForms\ThreadExceptionDialog.cs (1)
346details.ScrollBars = ScrollBars.Both;