b0b2f9f0-a0c7-4a4a-b84d-a2fc8c3c2796 1.0.0.0 Dino Wang en-US AppDomain1 AppDomain2 AppDomain3 ReadWriteDocument <!-- Description of the Getting Started callout. resid points to a LongString resource --> <Description resid="Contoso.GetStarted.Description"/> <!-- Point to a url resource which details how the add-in should be used. --> <LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/> </GetStarted> <!-- Function file is a HTML page that includes the JavaScript where functions for ExecuteAction will be called. Think of the FunctionFile as the code behind ExecuteFunction. --> <FunctionFile resid="Contoso.DesktopFunctionFile.Url" /> <!-- PrimaryCommandSurface is the main Office Ribbon. --> <ExtensionPoint xsi:type="PrimaryCommandSurface"> <!-- Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab. --> <OfficeTab id="TabHome"> <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. --> <Group id="Contoso.Group1"> <!-- Label for your group. resid must point to a ShortString resource. --> <Label resid="Contoso.Group1Label" /> <!-- Icons. Required sizes 16,32,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX. --> <!-- Use PNG icons. All URLs on the resources section must use HTTPS. --> <Icon> <bt:Image size="16" resid="Contoso.tpicon_16x16" /> <bt:Image size="32" resid="Contoso.tpicon_32x32" /> <bt:Image size="80" resid="Contoso.tpicon_80x80" /> </Icon> <!-- Control. It can be of type "Button" or "Menu". --> <Control xsi:type="Button" id="Contoso.TaskpaneButton"> <Label resid="Contoso.TaskpaneButton.Label" /> <Supertip> <!-- ToolTip title. resid must point to a ShortString resource. --> <Title resid="Contoso.TaskpaneButton.Label" /> <!-- ToolTip description. resid must point to a LongString resource. --> <Description resid="Contoso.TaskpaneButton.Tooltip" /> </Supertip> <Icon> <bt:Image size="16" resid="Contoso.tpicon_16x16" /> <bt:Image size="32" resid="Contoso.tpicon_32x32" /> <bt:Image size="80" resid="Contoso.tpicon_80x80" /> </Icon> <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. --> <Action xsi:type="ShowTaskpane"> <TaskpaneId>ButtonId1</TaskpaneId> <!-- Provide a url resource id for the location that will be displayed on the task pane. --> <SourceLocation resid="Contoso.Taskpane.Url" /> </Action> </Control> </Group> </OfficeTab> </ExtensionPoint> </DesktopFormFactor> </Host> </Hosts> <!-- You can use resources across hosts and form factors. --> <Resources> <bt:Images> <bt:Image id="Contoso.tpicon_16x16" DefaultValue="https://pointer-as-a-service.azurewebsites.net/assets/icon-16.png" /> <bt:Image id="Contoso.tpicon_32x32" DefaultValue="https://pointer-as-a-service.azurewebsites.net/assets/icon-32.png" /> <bt:Image id="Contoso.tpicon_80x80" DefaultValue="https://pointer-as-a-service.azurewebsites.net/assets/icon-80.png" /> </bt:Images> <bt:Urls> <bt:Url id="Contoso.Taskpane.Url" DefaultValue="https://pointer-as-a-service.azurewebsites.net/index.html" /> <bt:Url id="Contoso.GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812" /> <bt:Url id="Contoso.DesktopFunctionFile.Url" DefaultValue="https://pointer-as-a-service.azurewebsites.net/function-file/function-file.html" /> </bt:Urls> <!-- ShortStrings max characters==125. --> <bt:ShortStrings> <bt:String id="Contoso.TaskpaneButton.Label" DefaultValue="Pointer as a Service" /> <bt:String id="Contoso.Group1Label" DefaultValue="Commands Group" /> <bt:String id="Contoso.GetStarted.Title" DefaultValue="Pointer as a Service" /> </bt:ShortStrings> <!-- LongStrings max characters==250. --> <bt:LongStrings> <bt:String id="Contoso.TaskpaneButton.Tooltip" DefaultValue="Click to Show Pointer as a Service Taskpane" /> <bt:String id="Contoso.GetStarted.Description" DefaultValue="Pointer as a Service add-in loaded succesfully. Go to the HOME tab and click the 'Pointer as a Service' button to get started." /> </bt:LongStrings> </Resources> </VersionOverrides> <!-- End Add-in Commands Mode integration. --> </OfficeApp>