Solved
How to get IsObjectCheckedOut ?
Hi there,
in the web.link "documentation" there is a function
boolean IsObjectCheckedOut (string WorkspaceName, string ObjectName)
within the "Class pfcServer"
I tried
let active_ws = oSession.ListServers().Item(0).ActiveWorkspace;
console.log (oSession.IsObjectCheckedOut(active_ws , CurModel.Filename));
But I only get "TypeError: oSession.IsObjectCheckedOut is not a function"
How do I get the information, if an object is already checked out?

