private FREObject AddTab(FREContext ctx, uint argc, FREObject[] argv) { try { _view.InitialUrl = new UrlRequest(argv[0], _useEdge); _view.AddTab(); } catch (Exception e) { return(new FreException(e).RawValue); } return(FREObject.Zero); }
public FREObject AddTab(FREContext ctx, uint argc, FREObject[] argv) { try { _view.InitialUrl = argv[0].AsString(); _view.AddTab(); } catch (Exception e) { return(new FreException(e).RawValue); } return(FREObject.Zero); }