So I am trying to get started developing Office 365 Add-ins (previously Apps for Office), and I was wondering what browser or browser engine Office uses when it renders your app. I tried using JavaScript's navigator.appCodeName and navigator.appName, but due to the problem described here renders that method useless. What browser or engine do Office Add-ins use to render apps?
What browser / browser engine do Office Add-ins use?
1.6k Views Asked by James Parsons At
1
There are 1 best solutions below
Related Questions in MS-OFFICE
- Word Adin that automatically update document on the server on button press on ribbon
- How to pass a variable to a custom task pane in VB.Net
- Office Access errors
- Macro in Word to Underline each paragraph in document less than X characters long
- Copy and Paste Hyperlink change path to absolute
- C# Word Add-In Trusted Certificate
- Iterate through Resource Graph view and export to XPS with resources name in VBA Microsoft Project 2010
- Office add-in for save location
- Microsoft Graph API Accessing basic info of a user that is outside tenancy
- OpenXml.WordProcessing.Justification always comes as OpenXmlUnknownElement
- How to automate find/replace code in VBA modules in MS Office 2013?
- Creating a Record Option on a PDF or Word Document
- Office 365 Unified API Exchange folders
- Office 365 API - create folder bug and PUT file "content-length"
- Convert doc, docx, xls, xlsx to PDF (without office installed) with powershell (for free)
Related Questions in OFFICE365
- Can you programmatically generate a link to open a Word document and navigate to a particular location within it (preferably a comment)?
- Excel dynamically calculate cost of products based on bill of materials (BOM) and purchase price history
- Microsoft Office 365 problem cannot open a blank excel document
- In OfficeScript, how can I make it return the number of cells with a red background?
- Visual Studio write to Office 365 word
- Audit a share Excel workbook
- Copy paste a single value from within a cell to another cell
- Highlight column based on current date and time
- Share Outlook calendars with all members of specific security group
- Python IMAP4 keeps throwing this error when I'm connecting to Outlook. Has anyone seen this error before?
- IMAP configs for Outlook using Mail-listener
- How to add a new menu item on OneDrive action menu?
- Unable to locate fields in Microsoft Access
- Download Sharepoint aspx pages as pdf using python
- VBA - detect if user is running on 365
Related Questions in APPS-FOR-OFFICE
- Excel add-in with shared runtime - unhandled exception on displayDialogAsync
- Cannot debug add-in using F12Chooser in 1903
- Get all images in a Word document
- Icon does not appear for Outlook Web add in for Outlook 2016 on Windows
- Office Web applications (Word, Excel, Powerpoint) add-ins dropping cookie in IE11 on Windows 7
- Is it possible to search a Word document and return all the tables?
- How to detect old doc format in Word js api
- How to get User's actual Email Id in Outlook Add-in Integration
- Restrict user from closing outlook mail app, while some action is in progress
- How to open Select Data Dialogue from office content add in (Content App)
- How should paragraphCollection.first be used in the word javascript api
- Showing Task Panes
- Excel JS Add-In works in Excel but not Excel Online
- Excel add in (Content app) How to get rid of top right arrow
- Is addin (excel content add-ins) resize event supported/available in office.js 1.0 or 1.1?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It depends on where Office is being used. If it's on Windows Desktop, Office Add-ins use an Internet Explorer to load the hosted webpage in Office. For iOS, it will rely on the native WebView control. If on Office Online, it will use a sandboxed iframe, in which ever browser you open Office Online with.
If you're trying to determine the browser Office is running in, I believe sniffing the user agent string will work for you.