Template:APIBreadcrumb/documentation: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
This template creates a breadcrumb link in the Synthesis [[API Reference Documentation]] pages. It is meant to resemble the navigation element found in VBA and VB.NET's Object Browser window.
This template creates a breadcrumb link in the Synthesis [[API Reference Documentation]] pages. It is meant to resemble the navigation element found in VBA and VB.NET's Object Browser window.


This template helps readers navigate the API product by inserting a single line of text that shows the API call's parent item(s) in the API object library. In this hierarchy, the API object library itself is the top-level item and is therefore level 0. Classes and enums are at level 1, and methods and properties, as well as sub classes, are at level 2, and so on.
This template helps readers navigate the API object library by inserting links to the parent items of an API call, thereby showing the call's place in the hierarchy. In this hierarchy, the API object library itself is the top-level item and is therefore level 0. Classes and enums are at level 1, and methods and properties, as well as sub classes, are at level 2, and so on.
 
 


==Usage==
==Usage==
This template has four optional parameters, each corresponding to the sub-levels. This means that parameter 1 is the level 1 item, parameter 2 is the level 2 item, and so on.
This template has four optional parameters. The structure is as follows:
<pre>{{Template:APIBreadcrumb|.LINK1|.LINK2|.LINK3|.LINK4}}</pre>
 
where LINK1, LINK2, etc. are the parameters. You must add a period before each link.
 
Each parameter corresponds to a sub level in the API object library hierarchy. This means that LINK1 is the link to the level 1 item, LINK2 is the link to the level 2 item, and so on.


===Example 1===
===Example 1===
Line 25: Line 32:


===Example 2===
===Example 2===
The following code example shows the breadcrumb link for a level 2 call. In this case, the template populates the first parameter by adding a link to the reference doc of the call's parent item.
The following code example shows the breadcrumb link for a level 2 call. In this case, the template populates the first parameter by adding a link to the call's parent item.
<pre>{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}</pre>
<pre>{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}</pre>



Revision as of 18:50, 5 May 2016


Template Documentation

This template creates a breadcrumb link in the Synthesis API Reference Documentation pages. It is meant to resemble the navigation element found in VBA and VB.NET's Object Browser window.

This template helps readers navigate the API object library by inserting links to the parent items of an API call, thereby showing the call's place in the hierarchy. In this hierarchy, the API object library itself is the top-level item and is therefore level 0. Classes and enums are at level 1, and methods and properties, as well as sub classes, are at level 2, and so on.


Usage

This template has four optional parameters. The structure is as follows:

{{Template:APIBreadcrumb|.LINK1|.LINK2|.LINK3|.LINK4}}

where LINK1, LINK2, etc. are the parameters. You must add a period before each link.

Each parameter corresponds to a sub level in the API object library hierarchy. This means that LINK1 is the link to the level 1 item, LINK2 is the link to the level 2 item, and so on.

Example 1

The following code example shows the breadcumb link for a level 1 call. Because the parent item is the API object library itself, the template omits all parameters.

{{Template:APIBreadcrumb}}

The output of this code shows the level 0 parent item, as follows:


Member of: SynthesisAPI


Example 2

The following code example shows the breadcrumb link for a level 2 call. In this case, the template populates the first parameter by adding a link to the call's parent item.

{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}

The output of this code shows the level 0 and level 1 parent items, separated by a period:


Notes

As of 2016, we have only one API object library; therefore, the link to the V9/V10 API Reference Documentation was hard coded into this template. If Development creates a second object library in the future, you might want to create a new breadcrumb template for that library. This way, you have a way of finding all wiki pages related to a particular library.