Search found 2 matches
- 24 Nov 2014, 22:06
- Forum: CAD VCL
- Topic: Adding lines to a BLOCK
- Replies: 2
- Views: 15904
Re: Adding lines to a BLOCK
Hello,
Thank you, it worked great.
Best regards.
Thank you, it worked great.
Best regards.
- 22 Nov 2014, 23:01
- Forum: CAD VCL
- Topic: Adding lines to a BLOCK
- Replies: 2
- Views: 15904
Adding lines to a BLOCK
Hello, In order to add a line to a block definition I used something like: line1 := TsgDXFLine.Create; line1.Point := MakeFPoint(80, 100, 0); line1.Point1 := MakeFPoint(150, 150, 0); line1.Color := clBlue; line1.Layer := FCADFile.Converter.LayerByName(cnstLayerName); line1.SetLType(FCADFile.Converte...