123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using JBIM.Definition;
- namespace JBIM.Component
- {
-
-
-
- public class VisibleComponentObject:ComponentObject
- {
- public VisibleComponentObject()
- {
-
- OutLine = new List<Polygon>();
- }
-
-
-
- public GeometryLocation Location { get; set; }
-
-
-
- public List<Polygon> OutLine { get; private set; }
-
-
-
- public string FamilyName { get; set; }
-
-
-
- public string FamilySymbol { get; set; }
- }
- }
|