Message 1 of 3
Block Path

Not applicable
06-15-2005
12:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I am trying to edit the xref path in a DWG files.
dbxDoc.Open @"D:\AutoCad_Registered\FilesDWG\Hummer.DWG",Type.Missing);
foreach(AcadBlock Block in dbxDoc.Blocks)
{
if(Block.IsXRef)
{
Cosnole.WriteLine(Block.Name)
}
}
With ObjectDBX, the Block has not a property named "Path" , do you from which object i can access this property ?
thanks in advance,
Nicolas
I am trying to edit the xref path in a DWG files.
dbxDoc.Open @"D:\AutoCad_Registered\FilesDWG\Hummer.DWG",Type.Missing);
foreach(AcadBlock Block in dbxDoc.Blocks)
{
if(Block.IsXRef)
{
Cosnole.WriteLine(Block.Name)
}
}
With ObjectDBX, the Block has not a property named "Path" , do you from which object i can access this property ?
thanks in advance,
Nicolas