AutoGeneratedFieldProperties Class
Represents the properties of an AutoGeneratedField object. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The AutoGeneratedFieldProperties type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | AutoGeneratedFieldProperties | Initializes a new instance of the AutoGeneratedFieldProperties class. |
| Name | Description | |
|---|---|---|
![]() | DataField | Gets or sets the name of the field bound to the AutoGeneratedField object. |
![]() | IsReadOnly | Gets or sets a value indicating whether the values displayed in an AutoGeneratedField object can be modified in edit mode. |
![]() | Name | Gets or sets the name of the AutoGeneratedField object. |
![]() | Type | Gets or sets the data type of the value displayed in an AutoGeneratedFieldProperties object. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IStateManager::IsTrackingViewState | Infrastructure. Gets a value indicating whether the AutoGeneratedFieldProperties object is tracking its view-state changes. |
![]() ![]() | IStateManager::LoadViewState | Infrastructure. Loads the previously saved view state of the AutoGeneratedFieldProperties object. |
![]() ![]() | IStateManager::SaveViewState | Infrastructure. Saves the current view state of the AutoGeneratedFieldProperties object. |
![]() ![]() | IStateManager::TrackViewState | Infrastructure. Marks the starting point at which to begin tracking and saving view-state changes to the AutoGeneratedFieldProperties object. |
The AutoGeneratedFieldProperties class is used by data-bound controls to specify the properties of an AutoGeneratedField object when creating an automatically generated field. For example, when the DetailsView control creates an automatically generated row, it creates an AutoGeneratedFieldProperties object with the row's properties and passes it to the CreateAutoGeneratedRow method. Likewise, the GridView control passes an AutoGeneratedFieldProperties object to the CreateAutoGeneratedColumn method when creating an automatically generated column.
Note |
|---|
This class is typically used only when extending the GridView or DetailsView control. |
You can specify the name of the field to bind to an AutoGeneratedField object by setting the DataField property. To specify the data type of the field values, set the Type property. You can prevent users from modifying the field values by setting the IsReadOnly property to true. You can also assign a name to an AutoGeneratedField object by setting the Name property.
The following code example demonstrates how to use the AutoGeneratedFieldProperties class to create an AutoGeneratedField object in a custom control that derives from the DetailsView control.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.






Note