1С 8.3 Имена колонок таблицы значений
Данные > Примеры кода 1С > 1С 8.3 Таблица значений
Перейти в раздел примеры кода 1С 8.3:
Имена колонок таблицы значений в 1С 8.3:
// Возвращает массив имен колонок таблицы значений.
// Источник: https://github.com/SeiOkami/CollectionMethodsOneS/issues/67
//
// Параметры:
// Таблица - ТаблицаЗначений
//
// Возвращаемое значение:
// Массив из Строка
//
// Пример:
// Запрос = Новый Запрос("ВЫБРАТЬ 1 КАК К1, 2 КАК К2, 3 КАК К3");
// Выгрузка = Запрос.Выполнить().Выгрузить();
// Результат = ИменаКолонокТаблицы(Выгрузка); //"К1","К2","К3"
//
Функция ИменаКолонокТаблицы(Знач Таблица) Экспорт
ИменаКолонок = Новый Массив; // Массив из Строка
Для Каждого Колонка Из Таблица.Колонки Цикл
ИменаКолонок.Добавить(Колонка.Имя);
КонецЦикла;
Возврат ИменаКолонок;
КонецФункции
// MIT License
// Copyright (c) 2024 SeiOkami
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
// Источник: https://github.com/SeiOkami/CollectionMethodsOneS/issues/67
//
// Параметры:
// Таблица - ТаблицаЗначений
//
// Возвращаемое значение:
// Массив из Строка
//
// Пример:
// Запрос = Новый Запрос("ВЫБРАТЬ 1 КАК К1, 2 КАК К2, 3 КАК К3");
// Выгрузка = Запрос.Выполнить().Выгрузить();
// Результат = ИменаКолонокТаблицы(Выгрузка); //"К1","К2","К3"
//
Функция ИменаКолонокТаблицы(Знач Таблица) Экспорт
ИменаКолонок = Новый Массив; // Массив из Строка
Для Каждого Колонка Из Таблица.Колонки Цикл
ИменаКолонок.Добавить(Колонка.Имя);
КонецЦикла;
Возврат ИменаКолонок;
КонецФункции
// MIT License
// Copyright (c) 2024 SeiOkami
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0
комментарии
____________________
Перепечатка текста и фотографий разрешена при наличии прямой ссылки на источник