You are here

public function PHPExcel_Worksheet::getColumnDimensionByColumn in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::getColumnDimensionByColumn()

Get column dimension at a specific column by using numeric cell coordinates

Parameters

string $pColumn Numeric column coordinate of the cell:

Return value

PHPExcel_Worksheet_ColumnDimension

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php, line 1360

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function getColumnDimensionByColumn($pColumn = 0) {
  return $this
    ->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($pColumn));
}