123456789101112131415161718192021222324 |
- /*-------------------------------------------------------------------------
- * 功能描述:RevitIdGenerator
- * 作者:xulisong
- * 创建时间: 2019/6/13 17:06:08
- * 版本号:v1.0
- * -------------------------------------------------------------------------*/
- using Autodesk.Revit.DB;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RevitToJBim.Common
- {
- public class RevitIdGenerator
- {
- public static string GetConnectorId(Connector connector)
- {
- return $"{connector.Owner.Id}_C_{connector.Id}";
- }
- }
- }
|