Skip Ribbon Commands
Skip to main content

Get DFC Version


public static String getDfcVersion()

{

String version = null;

try

{

IDfClient dfc = DfClient.getLocalClient();

version = DfClient.getDFCVersion();

}

catch(Exception e)

{

e.PrintStackTrack();

}

return version;

}