• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/grid/column/column.php
  • Класс: BitrixMainGridColumnColumn
  • Вызов: Column::setType
public function setType(string $type): self
{
	$type = trim($type);
	if (empty($type))
	{
		throw new ArgumentNullException('type');
	}

	$this->type = $type;

	return $this;
}