Office Web Add-In Command Button Images resource -


i'm creating custom ribbon in ms word , add open , save buttons.

is there online resource microsoft office buttons images?

i thought fabric meant place sourced images. guide says not to.

don't reuse office ui fabric icons in office ribbon or contextual menu. fabric icons stylistically different , not match. https://dev.office.com/docs/add-ins/design/design-icons

this strikes me quite silly. fabric meant give app 'office feel', right? if that's case, why different office buttons?

i tried sourcing images word online app. unfortunately word online uses big composite image

https://s1-word-edit-15.cdn.office.net:443/we/s/1684243702_resources/1033/we.png

is there way of using png in office add-in manifest?

is there online resource microsoft office buttons images?

officially microsoft office team not publish products images. far know resources intellectual property , copyrighted.

fabric meant give app 'office feel', right?

yes.

if that's case, why different office buttons?

the office ui fabric designed used inside application make components looks native office ui.

is there way of using png in office add-in manifest?

no. office add-in manifest has requirements image element. size attribute gives size, in pixels, of image. 3 image sizes required: 16, 32, , 80. 5 optional sizes supported: 20, 24, 40, 48, , 64. following example clarification:

<icon>   <bt:image size="16" resid="icon1_32x32" />   <bt:image size="32" resid="icon1_32x32" />   <bt:image size="80" resid="icon1_32x32" /> </icon> 

what have called css image sprite designed used css files. nothing xml manifest file. clarification please refer to: anatomy of office add-in

from myself: understand point, mention office team provides design guidelines other icons itself. did questions yourself: "why that?" perhaps don't want re-use icons used office product, user use icons , knows action happen when press on it. if use same icon in application (add-in) , perform other actions, user confused. on other hand if duplicate same action in other place (your own tab) user may confused well: "why 2 'save' buttons?". yet point: office icons evolving versions of software, may different on variety devices , platforms supported office. add-in equally supported across of them , have same "save" icon ripped desktop office windows. want wanted ... practice use own art work app.


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -