2 types derived from BoundField
System.Web (2)
UI\WebControls\AutoGeneratedField.cs (1)
18
public sealed class AutoGeneratedField :
BoundField
{
UI\WebControls\CheckBoxField.cs (1)
17
public class CheckBoxField :
BoundField
{
7 instantiations of BoundField
System.Web (2)
UI\WebControls\BoundField.cs (1)
322
return new
BoundField
();
UI\WebControls\DataControlFieldCollection.cs (1)
91
return new
BoundField
();
System.Web.DataVisualization (5)
WebForm\General\ChartHttpHandler.cs (5)
554
BoundField field = new
BoundField
();
560
field = new
BoundField
();
591
BoundField field = new
BoundField
();
599
field = new
BoundField
();
628
BoundField 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)
20
typeof(
BoundField
),
UI\WebControls\GridView.cs (2)
3338
BoundField
boundField = fields[i] as
BoundField
;
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
554
BoundField
field = new BoundField();
591
BoundField
field = new BoundField();
628
BoundField
field = new BoundField();