Repository URL to install this package:
|
Version:
2016.3.0.4050 ▾
|
//========================================================================//
// SOURCE CODE LICENSE //
// Copyright 2014 Dassault Systèmes SolidWorks Corporation //
// All rights reserved. //
// This software and related documentation are proprietary to //
// Dassault Systèmes SolidWorks Corporation //
//========================================================================//
// dsCommand.js, JavaScript API dsCommand interface
//
djObjectExtendCollection.dsCommand = djCommandExtend;
function djCommandExtend(dsObj) {
dsObj.release = function() { return djProcessCommand(this, 'release', arguments); };
dsObj.GetApiID = function() {return djProcessCommand(this, 'GetApiID', arguments); };
dsObj.GetName = function() {return djProcessCommand(this, 'GetName', arguments); };
dsObj.get_LastError = function() {return djProcessCommand(this, 'get_LastError', arguments); };
dsObj.put_LastError = function(NewVal) {return djProcessCommand(this, 'put_LastError', arguments); };
dsObj.GetGlobalName = function() {return djProcessCommand(this, 'GetGlobalName', arguments); };
//Add forward methods above this line
}