Visual Basic | |
---|---|
Property Name As System.String |
C# | |
---|---|
System.string Name {get; set;} |
JavaScript | |
---|---|
get_Name () : String put_Name ( NewVal : String ) |
Property Value
Name of the external referenceThis code snippet shows how to get the external references and their names and paths.
COM native C++
_variant_t pVariantArray = dsDoc->GetExternalReferences();
if( V_VT( &pVariantArray ) != VT_EMPTY )
{
IExternalReferencePtr *ExtRef = NULL;
int countOfExtRef = 0;
TypeConverter::convertVariantArrayToPtrArray<IExternalReferencePtr, IExternalReference>( pVariantArray, ExtRef, countOfExtRef );if( ExtRef && countOfExtRef > 0)
{
for( int i = 0; i < countOfExtRef; ++i )
{
bstr_t blockName= ExtRef[i]->GetName();
bstr_t xRefPath = ExtRef[i]->GetPathName();
}
delete[] ExtRef;
}
}
DraftSight V1R1