2 types derived from BoundField
System.Web (2)
UI\WebControls\AutoGeneratedField.cs (1)
18public sealed class AutoGeneratedField : BoundField {
UI\WebControls\CheckBoxField.cs (1)
17public class CheckBoxField : BoundField {
7 instantiations of BoundField
System.Web (2)
UI\WebControls\BoundField.cs (1)
322return new BoundField();
UI\WebControls\DataControlFieldCollection.cs (1)
91return new BoundField();
System.Web.DataVisualization (5)
WebForm\General\ChartHttpHandler.cs (5)
554BoundField field = new BoundField(); 560field = new BoundField(); 591BoundField field = new BoundField(); 599field = new BoundField(); 628BoundField field = new BoundField();
16 references to BoundField
System.Web (13)
UI\WebControls\AutoGeneratedField.cs (1)
26/// <para>Initializes a new instance of a <see cref='System.Web.UI.WebControls.BoundField'/> class.</para>
UI\WebControls\BoundField.cs (9)
41/// <para>Initializes a new instance of a <see cref='System.Web.UI.WebControls.BoundField'/> class.</para> 309((BoundField)newField).ApplyFormatInEditMode = ApplyFormatInEditMode; 310((BoundField)newField).ConvertEmptyStringToNull = ConvertEmptyStringToNull; 311((BoundField)newField).DataField = DataField; 312((BoundField)newField).DataFormatString = DataFormatString; 313((BoundField)newField).HtmlEncode = HtmlEncode; 314((BoundField)newField).HtmlEncodeFormatString = HtmlEncodeFormatString; 315((BoundField)newField).NullDisplayText = NullDisplayText; 316((BoundField)newField).ReadOnly = ReadOnly;
UI\WebControls\DataControlFieldCollection.cs (1)
20typeof(BoundField),
UI\WebControls\GridView.cs (2)
3338BoundField boundField = fields[i] as BoundField;
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
554BoundField field = new BoundField(); 591BoundField field = new BoundField(); 628BoundField field = new BoundField();