本文整理汇总了C#中netDxf.DxfDocument.GetObjectByHandle方法的典型用法代码示例。如果您正苦于以下问题:C# DxfDocument.GetObjectByHandle方法的具体用法?C# DxfDocument.GetObjectByHandle怎么用?C# DxfDocument.GetObjectByHandle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类netDxf.DxfDocument
的用法示例。
在下文中一共展示了DxfDocument.GetObjectByHandle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoveBlock
private static void RemoveBlock()
{
DxfDocument dxf = new DxfDocument();
Block block = new Block("MyBlock");
Line line1 = new Line(new Vector3(-5, -5, 0), new Vector3(5, 5, 0));
Line line2 = new Line(new Vector3(5, -5, 0), new Vector3(-5, 5, 0));
block.Entities.Add(line1);
block.Entities.Add(line2);
Insert insert = new Insert(block);
dxf.AddEntity(insert);
bool ok;
// line1 is used by block and cannot be removed (ok = false)
ok = dxf.RemoveEntity(line1);
// block is used by insert and cannot be removed (ok = false)
ok = dxf.Blocks.Remove(block);
// it is safe to remove insert, it doesn't belong to anybody (ok = true)
ok = dxf.RemoveEntity(insert);
// it is safe to remove block, it doesn't belong to anybody (ok = true)
// at the same time, all entities that were part of the block have been also removed
ok = dxf.Blocks.Remove(block);
// obj is null the line1 does not exist in the document, the block was removed
DxfObject obj = dxf.GetObjectByHandle(line1.Handle);
Console.WriteLine("Press a key...");
Console.ReadKey();
}