Hide Table of Contents

Get Hyperlinks Example (C#)

This example shows how to get the hyperlinks for a SOLIDWORKS document using the SOLIDWORKS Document Manager API.

//---------------------------------------------------------------------------
// Preconditions:
// 1. Read the SOLIDWORKS Document Manager API
//    Getting Started topic and ensure that
//   
the required DLLs have been registered.
// 2. Copy and paste this module into a C#
//    console application in Microsoft Visual Studio.
// 3. Add the SolidWorks.Interop.swdocumentmgr.dll reference to the project:
//    a. Right-click the solution in Solution Explorer.
//    b. Click Add Reference.
//    c. Click Browse.
//    d. Click:
//       install_dir\api\redist\CLR2\SolidWorks.Interop.swdocumentmgr.dll
// 4. Substitute your_license_code with your
//    SOLIDWORKS Document Manager license key.
// 5. Substitute model_with_hyperlinks with the path to a model that
//    contains one or more hyperlinks.

// 6. Compile and run this program in Debug mode.
//
// Postconditions: Inspect the Output window and the
//
code to see how the API is used.
//--------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.Text;
using SolidWorks.Interop.swdocumentmgr;


class Program
{
    

    public static void ProcessDocHyperlinks(SwDMDocument swDoc)
    {
        int i;
        int count = swDoc.GetHyperLinksCount();
        Debug.Print(" Hyperlinks: " + count);
 
        for (i = 0; i < count; i++)
        {
            Debug.Print(" " + swDoc.GetHyperLinkAt(i));
        }
 
        Debug.Print("");
    }


    
static void Main(string[] args)
    {
        
        
const string sLicenseKey = "your_license_code";
        const string sDocFileName = "model_with_hyperlinks";
        
        
SwDMClassFactory swClassFact = default(SwDMClassFactory);
        
SwDMApplication swDocMgr = default(SwDMApplication);
        
SwDMDocument swDoc = default(SwDMDocument);
        
SwDMConfigurationMgr swCfgMgr = default(SwDMConfigurationMgr);
        
SwDmDocumentType nDocType = 0;
        
SwDmDocumentOpenError nRetVal = 0;

        
// Determine type of SOLIDWORKS file based on file extension
        if (sDocFileName.EndsWith("sldprt"))
        {
            nDocType =
SwDmDocumentType.swDmDocumentPart;
        }
        
else if (sDocFileName.EndsWith("sldasm"))
        {
            nDocType =
SwDmDocumentType.swDmDocumentAssembly;
        }
        
else if (sDocFileName.EndsWith("slddrw"))
        {
            nDocType =
SwDmDocumentType.swDmDocumentDrawing;
        }
        
else
        {
            
// Not a SOLIDWORKS file
            nDocType = SwDmDocumentType.swDmDocumentUnknown;

            
// So cannot open
            return;
        }

        
        swClassFact =
new SwDMClassFactory();
        swDocMgr = swClassFact.GetApplication(sLicenseKey);
        swDoc = (
SwDMDocument)swDocMgr.GetDocument(sDocFileName, nDocType, false, out nRetVal);
        swCfgMgr = swDoc.ConfigurationManager;
        
        
Debug.Print("File = "
+ swDoc.FullName);
          
        ProcessDocHyperlinks(swDoc);
    }
}



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Get Hyperlinks Example (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2016 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.