OnResolveXRefEvent
Moderators: SDS, support, admin
-
- Posts: 8
- Joined: 17 Jan 2017, 17:58
OnResolveXRefEvent
Hi Guys,
I need some documentation on How OnResolveXRefEvent event works
Can I use it to resolve xrefs which are not found on same dir or on original location?
If not I need a way to manually load xrefs
I'm trying to use this code but the xref is not resolved on the image.
Do I need to reload/refresh etc?
Do I do something wrong:
private static bool Converter_OnResolveXRefEvent(CADXRef AXref, string AFileName, ref bool AIsResolve)
{
AXref.AddCADImage(....Path to the current location of xref .....);
AIsResolve = true;
return true;
Thanks Dror
I need some documentation on How OnResolveXRefEvent event works
Can I use it to resolve xrefs which are not found on same dir or on original location?
If not I need a way to manually load xrefs
I'm trying to use this code but the xref is not resolved on the image.
Do I need to reload/refresh etc?
Do I do something wrong:
private static bool Converter_OnResolveXRefEvent(CADXRef AXref, string AFileName, ref bool AIsResolve)
{
AXref.AddCADImage(....Path to the current location of xref .....);
AIsResolve = true;
return true;
Thanks Dror
Re: OnResolveXRefEvent
Hello Dror,
The OnResolveXRefEvent occurs if some XRef can't be found at its path during the loading of drawing file.
AXRef returns CADXRef object for the unresolved XRef,
AFileName contains a path of the unresolved XRef,
AIsResolve flag value is equal false.
The unresolved XRef should be resolved in the OnResolveXRefEvent handler as shown below.
This code actually adds a new XRef to the loaded CADImage (cadImage variable), so you will need to delete the old (unresolved) XRef, its block and insert afterwards. Unfortunately, it is not possible to modify the unresolved XRef in the event handler, because the entities are not accessible when the OnResolveXRefEvent occurs.
Mikhail
The OnResolveXRefEvent occurs if some XRef can't be found at its path during the loading of drawing file.
AXRef returns CADXRef object for the unresolved XRef,
AFileName contains a path of the unresolved XRef,
AIsResolve flag value is equal false.
The unresolved XRef should be resolved in the OnResolveXRefEvent handler as shown below.
Code: Select all
CADImage cadImage;
...
cadImage.Converter.OnResolveXRefEvent += new CADXRefResolver(Converter_OnResolveXRefEvent);
...
bool Converter_OnResolveXRefEvent(CADXRef AXref, string AFileName, ref bool AIsResolve)
{
string xRefPath = @"C:\new_xref_folder\new_xref_file.dwg";
if (System.IO.File.Exists(xRefPath))
{
AXref.AddCADImage(xRefPath);
cadImage.AddScaledDXF(AXref.CADImage, xRefPath, new DPoint(0, 0, 0), new DPoint(1, 1, 1), 0);
AIsResolve = true;
}
return AIsResolve;
}
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 8
- Joined: 17 Jan 2017, 17:58
Re: OnResolveXRefEvent
Thanks.
But we still have a major problem. The new XREF is not in the right position, sizing, rotation etc.
Is there a way to copy all sizing, position definition from the unresolved reference?
Or on the other side (which will make things VERY easy) to make the AFileName passes by ref?
Dror
But we still have a major problem. The new XREF is not in the right position, sizing, rotation etc.
Is there a way to copy all sizing, position definition from the unresolved reference?
Or on the other side (which will make things VERY easy) to make the AFileName passes by ref?
Dror
Re: OnResolveXRefEvent
Dror,
We are aware of this problem. The position, scale and rotation angle of the unresolved external reference can't be retrieved in the OnResolveXRefEvent handler, because these parameters should be retrieved from XRef's insert (CADInsert object), but this insert is not accessible when the event occurs.
Mikhail
We are aware of this problem. The position, scale and rotation angle of the unresolved external reference can't be retrieved in the OnResolveXRefEvent handler, because these parameters should be retrieved from XRef's insert (CADInsert object), but this insert is not accessible when the event occurs.
Could you explain how you can benefit from the AFileName parameter passed by reference? Do you want to be able to resolve an external reference by simply changing the file name in the event handler?Or on the other side (which will make things VERY easy) to make the AFileName passes by ref?
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 8
- Joined: 17 Jan 2017, 17:58
Re: OnResolveXRefEvent
Yes. Exactly.
The xrefs are located in a different directory and different name than the original name it appears in the original model. I have a translation table between the original name and the new name. so for instance what I want to achieve is something like:
private static bool Converter_OnResolveXRefEvent(CADXRef AXref, string AFileName, ref bool AIsResolve)
{
string originalName = AFileName;
string newLoationAndName = findXrefNewLocation(originalName );
if(!string.isNullOrEmpty(newLoationAndName) // if found new xref location
{
AFileName = newLoationAndName ;
AIsResolve=true;
return AIsResolve;
}
AIsResolve = false;
return false;
The xrefs are located in a different directory and different name than the original name it appears in the original model. I have a translation table between the original name and the new name. so for instance what I want to achieve is something like:
private static bool Converter_OnResolveXRefEvent(CADXRef AXref, string AFileName, ref bool AIsResolve)
{
string originalName = AFileName;
string newLoationAndName = findXrefNewLocation(originalName );
if(!string.isNullOrEmpty(newLoationAndName) // if found new xref location
{
AFileName = newLoationAndName ;
AIsResolve=true;
return AIsResolve;
}
AIsResolve = false;
return false;
Re: OnResolveXRefEvent
Dror,
Thank you for the information.
Currently it is not possible to resolve the XRef by simply changing its file name in the OnResolveXRefEvent handler. But we will take your suggestion into account.
Mikhail
Thank you for the information.
Currently it is not possible to resolve the XRef by simply changing its file name in the OnResolveXRefEvent handler. But we will take your suggestion into account.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: OnResolveXRefEvent
Hello Dor,
We have modified the OnResolveXRefEvent and its delegate as follows:
The xrefPath parameter is passed by reference, so now you can resolve an external reference by changing its path in the event handler. The code example below shows how to use the modified OnResolveXRefEvent.
The modified event is available in version 11.2.20.61206 which was sent to you via e-mail.
Mikhail
We have modified the OnResolveXRefEvent and its delegate as follows:
Code: Select all
public static event CADXRefResolver OnResolveXRefEvent;
Code: Select all
namespace CADImport
{
public delegate void CADXRefResolver(ref string xrefPath);
}
Code: Select all
using CADImport;
...
public Form1()
{
InitializeComponent();
CADConverter.OnResolveXRefEvent += new CADXRefResolver(CADConverter_OnResolveXRefEvent);
}
void CADConverter_OnResolveXRefEvent(ref string xrefPath)
{
string newXRefPath =@"C:\new_xref_folder\new_xref_file.dwg";
if (System.IO.File.Exists(newXRefPath))
{
xrefPath = newXRefPath;
}
}
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support