/
spruttechnology
/
cam-api-examples
Обзор
Документация
Войти
/
spruttechnology
/
cam-api-examples
Код
Запросы
3
Задачи
Пакеты
0
Релизы
1
Аналитика
v19/develop
UI/FeatureFinderViewerNet/project/main/FeatureNodeItem.cs
18 строк
553 B
renal
Новые примеры CAMAPI
22 июн 2026, 15:53
22 июн 2026, 15:53
a5f6d2b
Код
Авторство
О чём код?
using CAMAPI.FeatureFinder; namespace FeatureFinderViewerNet; /// <summary> /// Plain-data record representing one feature found on a geometry node. /// NodeName is the geometry tree full name used for viewport selection. /// EntityNames are display names of the feature's base geometry entities. /// </summary> public record FeatureNodeItem( string Caption, TCamApiFeatureType FeatureType, string KeyInfo, IReadOnlyList<string> EntityPaths, List<PropertyItem> Properties ); public record PropertyItem(string Name, string Value);