517b029b-a3f5-46ce-bc90-32d398abea30 1.0.0.0 Speckle en-US ReadWriteDocument <!-- Description of the Getting Started callout. resid points to a LongString resource --> <Description resid="GetStarted.Description"/> <!-- Point to a url resource which details how the add-in should be used. --> <LearnMoreUrl resid="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="Commands.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. --> <CustomTab id="Speckle.Tab1"> <!-- Ensure you provide a unique id for the group. Recommendation for any IDs is to namespace using your company name. --> <Group id="Speckle.Tab1.Group1"> <!-- Label for your group. resid must point to a ShortString resource. --> <Label resid="Speckle.Tab1.Group1.Label" /> <!-- 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="Icon.16x16" /> <bt:Image size="20" resid="Icon.20x20" /> <bt:Image size="24" resid="Icon.24x24" /> <bt:Image size="32" resid="Icon.32x32" /> <bt:Image size="40" resid="Icon.40x40" /> <bt:Image size="48" resid="Icon.48x48" /> <bt:Image size="64" resid="Icon.64x64" /> <bt:Image size="80" resid="Icon.80x80" /> </Icon> <!-- Control. It can be of type "Button" or "Menu". --> <Control xsi:type="Button" id="SpeckleExcelButton"> <Label resid="SpeckleExcelButton.Label" /> <Supertip> <!-- ToolTip title. resid must point to a ShortString resource. --> <Title resid="SpeckleExcelButton.Label" /> <!-- ToolTip description. resid must point to a LongString resource. --> <Description resid="SpeckleExcelButton.Tooltip" /> </Supertip> <Icon> <bt:Image size="16" resid="Icon.16x16" /> <bt:Image size="20" resid="Icon.20x20" /> <bt:Image size="24" resid="Icon.24x24" /> <bt:Image size="32" resid="Icon.32x32" /> <bt:Image size="40" resid="Icon.40x40" /> <bt:Image size="48" resid="Icon.48x48" /> <bt:Image size="64" resid="Icon.64x64" /> <bt:Image size="80" resid="Icon.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>SpeckleExcelPane</TaskpaneId> <!-- Provide a url resource id for the location that will be displayed on the task pane. --> <SourceLocation resid="Taskpane.Url" /> </Action> </Control> </Group> <Label resid="Speckle.Tab1.TabLabel" /> </CustomTab> </ExtensionPoint> </DesktopFormFactor> </Host> </Hosts> <!-- You can use resources across hosts and form factors. --> <Resources> <bt:Images> <bt:Image id="Icon.16x16" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-16.png"/> <bt:Image id="Icon.20x20" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-20.png"/> <bt:Image id="Icon.24x24" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-24.png"/> <bt:Image id="Icon.32x32" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-32.png"/> <bt:Image id="Icon.40x40" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-40.png"/> <bt:Image id="Icon.48x48" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-48.png"/> <bt:Image id="Icon.64x64" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-64.png"/> <bt:Image id="Icon.80x80" DefaultValue="https://excel.speckle.systems/static/icons/mono-filled/icon-80.png"/> </bt:Images> <bt:Urls> <bt:Url id="GetStarted.LearnMoreUrl" DefaultValue="https://speckle.systems" /> <bt:Url id="Commands.Url" DefaultValue="https://excel.speckle.systems/commands.html" /> <bt:Url id="Taskpane.Url" DefaultValue="https://excel.speckle.systems/" /> </bt:Urls> <!-- ShortStrings max characters==125. --> <bt:ShortStrings> <bt:String id="GetStarted.Title" DefaultValue="Get started with your sample add-in!" /> <bt:String id="Speckle.Tab1.Group1.Label" DefaultValue="Connector" /> <bt:String id="SpeckleExcelButton.Label" DefaultValue="SpeckleExcel" /> <bt:String id="Speckle.Tab1.TabLabel" DefaultValue="Speckle" /> </bt:ShortStrings> <!-- LongStrings max characters==250. --> <bt:LongStrings> <bt:String id="GetStarted.Description" DefaultValue="SpeckleExcel has loaded successfully. Go to the Speckle tab and click the 'SpeckleExcel' button to get started." /> <bt:String id="SpeckleExcelButton.Tooltip" DefaultValue="Click to show the SpeckleExcel task pane" /> </bt:LongStrings> </Resources> </VersionOverrides> <!-- End Add-in Commands Mode integration. --> </OfficeApp>