public static bool TryGetObjectData(this SciterValue sciterValue, out IntPtr value)
 {
     value = IntPtr.Zero;
     return(sciterValue?.TryGetObjectDataInternal(out value) == true);
 }