public FREObject SetCurrentTab(FREContext ctx, uint argc, FREObject[] argv) { try { _view.SetCurrentTab(argv[0].AsInt()); } catch (Exception e) { return(new FreException(e).RawValue); } return(FREObject.Zero); }
public FREObject SetCurrentTab(FREContext ctx, uint argc, FREObject[] argv) { try { _view.SetCurrentTab(Convert.ToInt32(new FreObjectSharp(argv[0]).Value)); } catch (Exception e) { return(new FreException(e).RawValue); } return(FREObject.Zero); }