ButtonColumnType Enum

Definition

Specifies the button type for the ButtonColumn object.

C#
public enum ButtonColumnType
Inheritance
ButtonColumnType

Fields

Name Value Description
LinkButton 0

A column of hyperlink buttons.

PushButton 1

A column of push buttons.

Examples

C#
private void Page_Init(Object sender, EventArgs e)
{

   // Create dynamic column to add to Columns collection.
   ButtonColumn AddColumn = new ButtonColumn();
   AddColumn.HeaderText="Add Item";
   AddColumn.Text="Add";
   AddColumn.CommandName="Add";
   AddColumn.ButtonType = ButtonColumnType.PushButton;

   // Add column to Columns collection.
   ItemsGrid.Columns.AddAt(2, AddColumn);
}

Remarks

The ButtonColumnType enumeration represents the button styles for the ButtonColumn object.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also