JavaScript Application Programming Interface (API) for AutoCAD
|
Autodesk.AutoCAD.js
function Acad.TransientManager.updateTransient(transientId,xmlData);
Parameters |
Description |
transientId |
is of type integer |
xmlData |
is of type string |
Use this function to update an Acad.Transient object in the AutoCAD transient Manager. The XML data represents an AcGiDrawable object defined by the transient.xsd schema.
Returns a Promise object for which users need to specify .then(OnSuccess, onError)
. For example, function Acad.TransientManager.updateTransient(transientId, xmlData).then(onSuccess, onError);
onSuccess |
is a function type called on successful completion of this method |
onError |
is a function type called if an error occurs |
Copyright (c) 2016. All rights reserved.
|
What do you think about this topic? Send feedback!
|