Home
last modified time | relevance | path

Searched refs:columnId (Results 1 – 2 of 2) sorted by relevance

/plugin/authgoogle/google/contrib/
DGoogle_FusiontablesService.php31 * @param string $columnId Name or identifier for the column being deleted.
34 public function delete($tableId, $columnId, $optParams = array()) { argument
35 $params = array('tableId' => $tableId, 'columnId' => $columnId);
44 * @param string $columnId Name or identifier for the column that is being requested.
48 public function get($tableId, $columnId, $optParams = array()) { argument
49 $params = array('tableId' => $tableId, 'columnId' => $columnId);
101 * @param string $columnId Name or identifier for the column that is being updated.
106 public function patch($tableId, $columnId, Google_Column $postBody, $optParams = array()) { argument
107 $params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody);
120 * @param string $columnId Name or identifier for the column that is being updated.
[all …]
/plugin/columns/
Dsyntax.php331 $columnId = $this->getAttribute($attribute, 'column-id');
332 $styleName = $this->getOdtTableStyleName($blockId, $columnId);
347 $styleName = $this->getOdtTableStyleName($blockId, $columnId, 1);
406 $columnId = $this->getAttribute($attribute, 'column-id');
407 $styleName = $this->getOdtTableStyleName($blockId, $columnId, 1);
448 private function getOdtTableStyleName($blockId, $columnId = 0, $cell = 0) { argument
450 if ($columnId != 0) {
451 if ($columnId <= 26) {
452 $result .= '.' . chr(ord('A') + $columnId - 1);