We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only line0 will be shown again.
Code to create a BlockRef
GeoObject.Line line0 = GeoObject.Line.Construct(); line0.StartPoint = new GeoPoint(0, 0); line0.EndPoint = new GeoPoint(100, 0); cadControl.CadFrame.Project.SetDefaults(line0); cadControl.CadFrame.Project.GetActiveModel().Add(line0); GeoObject.Line line1 = GeoObject.Line.Construct(); line1.StartPoint = new GeoPoint(0, 0); line1.EndPoint = new GeoPoint(100, 100); cadControl.CadFrame.Project.SetDefaults(line1); GeoObject.Line line2 = GeoObject.Line.Construct(); line2.StartPoint = new GeoPoint(0, 100); line2.EndPoint = new GeoPoint(100, 0); cadControl.CadFrame.Project.SetDefaults(line2); GeoObject.Block block = GeoObject.Block.Construct(); block.Add(line1); block.Add(line2); cadControl.CadFrame.Project.SetDefaults(block); GeoObject.BlockRef blockRef = GeoObject.BlockRef.Construct(block); cadControl.CadFrame.Project.SetDefaults(blockRef); cadControl.CadFrame.Project.GetActiveModel().Add(blockRef);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Only line0 will be shown again.
Code to create a BlockRef
The text was updated successfully, but these errors were encountered: