feat(io): add DetectTitleBlock option and TitleBlockEntityIds result property

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-30 11:32:12 -04:00
parent c3494681a8
commit 8ac3f5622c
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -16,6 +16,11 @@ namespace OpenNest.IO
/// </summary>
public bool DetectBends { get; set; } = true;
/// <summary>
/// When true, detects and identifies title block entities during import. Default true.
/// </summary>
public bool DetectTitleBlock { get; set; } = true;
/// <summary>
/// Override the drawing name. Null = filename without extension.
/// </summary>
+5
View File
@@ -45,5 +45,10 @@ namespace OpenNest.IO
/// that need access to non-geometry entities (e.g., text annotations).
/// </summary>
public CadDocument Document { get; set; }
/// <summary>
/// GUIDs of entities identified as part of the title block during import.
/// </summary>
public HashSet<System.Guid> TitleBlockEntityIds { get; set; }
}
}