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 //
//========================================================================//
// dsApplicationOptions.js, JavaScript API dsApplicationOptions interface
//
djObjectExtendCollection.dsApplicationOptions = djApplicationOptionsExtend;
function djApplicationOptionsExtend(dsObj) {
dsObj.release = function() { return djProcessCommand(this, 'release', arguments); };
dsObj.GetElementColor = function(ElementColor) {return djProcessCommand(this, 'GetElementColor', arguments); };
dsObj.SetElementColor = function(ElementColor, Color) {return djProcessCommand(this, 'SetElementColor', arguments); };
dsObj.GetApplicationOptionBool = function(Var) {return djProcessCommand(this, 'GetApplicationOptionBool', arguments); };
dsObj.SetApplicationOptionBool = function(Var, Value) {return djProcessCommand(this, 'SetApplicationOptionBool', arguments); };
dsObj.GetApplicationOptionInt16 = function(Var) {return djProcessCommand(this, 'GetApplicationOptionInt16', arguments); };
dsObj.SetApplicationOptionInt16 = function(Var, Value) {return djProcessCommand(this, 'SetApplicationOptionInt16', arguments); };
dsObj.GetApplicationOptionInt32 = function(Var) {return djProcessCommand(this, 'GetApplicationOptionInt32', arguments); };
dsObj.SetApplicationOptionInt32 = function(Var, Value) {return djProcessCommand(this, 'SetApplicationOptionInt32', arguments); };
dsObj.GetApplicationOptionDouble = function(Var) {return djProcessCommand(this, 'GetApplicationOptionDouble', arguments); };
dsObj.SetApplicationOptionDouble = function(Var, Value) {return djProcessCommand(this, 'SetApplicationOptionDouble', arguments); };
dsObj.GetApplicationOptionString = function(Var) {return djProcessCommand(this, 'GetApplicationOptionString', arguments); };
dsObj.SetApplicationOptionString = function(Var, Value) {return djProcessCommand(this, 'SetApplicationOptionString', arguments); };
//Add forward methods above this line
}