IAdmColumnSettings

The IAdmColumnSettings interface is used to manage column settings.

Inheritance: IUnknown

Properties

  • Property

  • Description

  • Columns

  • Gets or sets an array of columns.

  • EnableSorting

  • Gets or sets a value indicating whether sorting is enabled by default.

  • SortBy

  • Gets or sets the column used for sorting.

  • SortDescending

  • Gets or sets a value indicating whether objects must be sorted in the descending order.

  • EnableGrouping

  • Gets or sets a value indicating whether grouping objects is enabled by default.

  • GroupBy

  • Gets or sets the column used to group objects.

Details

Columns

Gets or sets an array of columns. Each column in the array is represented by the name of the corresponding property as it is defined in your directory schema.

  • Type:
  • string[]
  • Access:
  • Read/Write

EnableSorting

Gets or sets a value indicating whether sorting is enabled by default.

  • Type:
  • bool
  • Access:
  • Read/Write

SortBy

Gets or sets the column used for sorting.

  • Type:
  • string
  • Access:
  • Read/Write

Remarks

This property is ignored if the EnableSorting property is set to false.


SortDescending

Gets or sets a value indicating whether objects must be sorted in the descending order.

  • Type:
  • bool
  • Access:
  • Read/Write

Remarks

This property is ignored if the EnableSorting property is set to false.


EnableGrouping

Gets or sets a value indicating whether grouping objects is enabled by default.

  • Type:
  • bool
  • Access:
  • Read/Write

GroupBy

Gets or sets the column used to group objects.

  • Type:
  • string
  • Access:
  • Read/Write

Remarks

This property is ignored if the EnableGrouping property is set to false.


Requirements

Minimum required version: 2018.1

See also