Skip to content

Commit 59d73d9

Browse files
authored
Merge pull request #2172 from iRaindrop/vbruham_sharepoint_h
VS SharePoint Content QA fixes: How-to docs 1 of 2
2 parents 0b3e231 + 6fdbd73 commit 59d73d9

File tree

31 files changed

+173
-189
lines changed

31 files changed

+173
-189
lines changed

docs/sharepoint/how-to-add-a-creator-method.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ manager: douge
2323
ms.workload:
2424
- "office"
2525
---
26-
# How to: Add a Creator Method
27-
A Creator method adds new data to the data source of an entity. The Business Data Connectivity (BDC) service calls this method when users choose the **New Item** button on the Ribbon of a list that is based on the model. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
26+
# How to: Add a Creator method
27+
A Creator method adds new data to the data source of an entity. The Business Data Connectivity (BDC) service calls this method when users choose the **New Item** button on the **Ribbon** of a list that is based on the model. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
2828

2929
### To add a Creator method
3030

31-
1. On the BDC designer, choose an entity.
31+
1. On the **BDC Designer**, choose an entity.
3232

33-
2. On the menu bar, choose **View**, **Other Windows**, **BDC Method Details**.
33+
2. On the menu bar, choose **View** > **Other Windows** >**BDC Method Details**.
3434

3535
The **BDC Method Details** window opens. For more information about that window, see [BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md).
3636

@@ -62,7 +62,7 @@ ms.workload:
6262
[!code-csharp[SP_BDC#4](../sharepoint/codesnippet/CSharp/SP_BDC/bdcmodel1/contactservice.cs#4)]
6363
[!code-vb[SP_BDC#4](../sharepoint/codesnippet/VisualBasic/sp_bdc/bdcmodel1/contactservice.vb#4)]
6464

65-
## See Also
65+
## See also
6666
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
6767
[How to: Add a Finder Method](../sharepoint/how-to-add-a-finder-method.md)
6868
[How to: Add a Specific Finder Method](../sharepoint/how-to-add-a-specific-finder-method.md)

docs/sharepoint/how-to-add-a-custom-property.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ manager: douge
2323
ms.workload:
2424
- "office"
2525
---
26-
# How to: Add a Custom Property
26+
# How to: Add a custom property
2727
You can add custom properties to the model by using the **Property Editor**. You can access these properties in code to retrieve information such as connection strings and other data at run time.
2828

2929
### To add a custom property
3030

3131
1. In the **BDC Explorer**, choose the node that represents the model element to which you want to apply a custom property.
3232

33-
2. On the menu bar, choose **View**, **Properties Window**.
33+
2. On the menu bar, choose **View** > **Properties Window**.
3434

3535
3. In the **Properties** window, choose the **Custom Properties** property, and then choose the ellipsis button (![ASP.NET Mobile Designer ellipse](../sharepoint/media/mwellipsis.gif "ASP.NET Mobile Designer ellipse")).
3636

@@ -42,7 +42,7 @@ ms.workload:
4242

4343
6. For the **Value** field of the custom property, specify a value, and then choose the **OK** button.
4444

45-
## See Also
45+
## See also
4646
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
4747
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
4848
[Creating a Business Data Connectivity Model](../sharepoint/creating-a-business-data-connectivity-model.md)

docs/sharepoint/how-to-add-a-custom-sharepoint-node-to-server-explorer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ manager: douge
1717
ms.workload:
1818
- "office"
1919
---
20-
# How to: Add a Custom SharePoint Node to Server Explorer
20+
# How to: Add a custom SharePoint node to Server Explorer
2121
You can add custom nodes under the **SharePoint Connections** node in **Server Explorer**. This is useful when you want to display additional SharePoint components that are not displayed in **Server Explorer** by default. For more information, see [Extending the SharePoint Connections Node in Server Explorer](../sharepoint/extending-the-sharepoint-connections-node-in-server-explorer.md).
2222

2323
To add a custom node, first create a class that defines the new node. Then create an extension that adds the node as a child of an existing node.
@@ -74,13 +74,13 @@ ms.workload:
7474
[!code-vb[SPExtensibility.ProjectSystemExtension.General#7](../sharepoint/codesnippet/VisualBasic/projectsystemexamples/extension/serverexplorernode.vb#7)]
7575
[!code-csharp[SPExtensibility.ProjectSystemExtension.General#7](../sharepoint/codesnippet/CSharp/projectsystemexamples/extension/serverexplorernode.cs#7)]
7676

77-
## Complete Example
77+
## Complete example
7878
The following code example provides the complete code to define a simple node and add it as a child of the SharePoint site node in **Server Explorer**.
7979

8080
[!code-vb[SPExtensibility.ProjectSystemExtension.General#5](../sharepoint/codesnippet/VisualBasic/projectsystemexamples/extension/serverexplorernode.vb#5)]
8181
[!code-csharp[SPExtensibility.ProjectSystemExtension.General#5](../sharepoint/codesnippet/CSharp/projectsystemexamples/extension/serverexplorernode.cs#5)]
8282

83-
## Compiling the Code
83+
## Compiling the code
8484
This example assumes that your project contains an icon named CustomChildNodeIcon as an embedded resource. This example also requires references to the following assemblies:
8585

8686
- Microsoft.VisualStudio.SharePoint
@@ -89,12 +89,12 @@ ms.workload:
8989

9090
- System.Drawing
9191

92-
## Deploying the Extension
92+
## Deploying the extension
9393
To deploy the **Server Explorer** extension, create a [!INCLUDE[vsprvs](../sharepoint/includes/vsprvs-md.md)] extension (VSIX) package for the assembly and any other files that you want to distribute with the extension. For more information, see [Deploying Extensions for the SharePoint Tools in Visual Studio](../sharepoint/deploying-extensions-for-the-sharepoint-tools-in-visual-studio.md).
9494

95-
## See Also
95+
## See also
9696
[Extending the SharePoint Connections Node in Server Explorer](../sharepoint/extending-the-sharepoint-connections-node-in-server-explorer.md)
9797
[How to: Extend a SharePoint Node in Server Explorer](../sharepoint/how-to-extend-a-sharepoint-node-in-server-explorer.md)
9898
[Walkthrough: Extending Server Explorer to Display Web Parts](../sharepoint/walkthrough-extending-server-explorer-to-display-web-parts.md)
9999

100-
100+

docs/sharepoint/how-to-add-a-deleter-method.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ manager: douge
2525
ms.workload:
2626
- "office"
2727
---
28-
# How to: Add a Deleter Method
29-
You can enable an end user to delete a data record from an external list on a SharePoint site by adding a *Deleter* method to the model. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
28+
# How to: Add a Deleter method
29+
You can enable an end user to delete a data record from an external list on a SharePoint site by adding a Deleter method to the model. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
3030

3131
### To create a Deleter method
3232

33-
1. On the BDC designer, choose an entity.
33+
1. On the **BDC Designer**, choose an entity.
3434

35-
2. On the menu bar, choose **View**, **Other Windows**, **BDC Method Details**.
35+
2. On the menu bar, choose **View** > **Other Windows** > **BDC Method Details**.
3636

3737
The **BDC Method Details** window opens. For more information about this window, see [BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md).
3838

@@ -65,7 +65,7 @@ ms.workload:
6565
[!code-csharp[SP_BDC#6](../sharepoint/codesnippet/CSharp/SP_BDC/bdcmodel1/salesorderdetailservice.cs#6)]
6666
[!code-vb[SP_BDC#6](../sharepoint/codesnippet/VisualBasic/sp_bdc/bdcmodel1/salesorderdetailservice.vb#6)]
6767

68-
## See Also
68+
## See also
6969
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
7070
[How to: Add a Finder Method](../sharepoint/how-to-add-a-finder-method.md)
7171
[How to: Add a Specific Finder Method](../sharepoint/how-to-add-a-specific-finder-method.md)

docs/sharepoint/how-to-add-a-feature-to-sharepoint-solutions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ manager: douge
1818
ms.workload:
1919
- "office"
2020
---
21-
# How to: Add a Feature to SharePoint Solutions
21+
# How to: Add a feature to SharePoint solutions
2222
When you create a SharePoint solution, one Feature and one Package are added to the solution. You can add more Feature items to organize different types of SharePoint files.
2323

24-
### To add a Feature through Solution Explorer
24+
### To add a feature through Solution Explorer
2525

2626
1. In **Solution Explorer**, open the shortcut menu for **Features**, and then choose **Add Feature**.
2727

28-
## See Also
28+
## See also
2929
[Packaging and Deploying SharePoint Solutions](../sharepoint/packaging-and-deploying-sharepoint-solutions.md)
3030

3131

docs/sharepoint/how-to-add-a-filter-descriptor-to-a-finder-method.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ manager: douge
2121
ms.workload:
2222
- "office"
2323
---
24-
# How to: Add a Filter Descriptor to a Finder Method
24+
# How to: Add a filter descriptor to a Finder method
2525
Filter descriptors enable consumers of the model to pass values to methods before they execute. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
2626

2727
One common scenario is that users in SharePoint want to retrieve instances of an external content type that match some criteria. You can support this scenario by adding a filter descriptor to a Finder method.
@@ -32,7 +32,7 @@ ms.workload:
3232

3333
2. In the **Method Details** window, choose the type descriptor of the parameter.
3434

35-
3. On the menu bar, choose **View**, **Properties Window**.
35+
3. On the menu bar, choose **View** > **Properties Window**.
3636

3737
4. In the **Properties** window, set the **Type Name** property to a data type that is appropriate for the filter.
3838

@@ -44,7 +44,7 @@ ms.workload:
4444

4545
A new filter descriptor appears underneath the **Filter Descriptors** node.
4646

47-
7. On the menu bar, choose **View**, **Properties Window**.
47+
7. On the menu bar, choose **View** > **Properties Window**.
4848

4949
8. In the **Properties** window, choose the **Type** property.
5050

@@ -66,7 +66,7 @@ ms.workload:
6666
[!code-csharp[SP_BDC#11](../sharepoint/codesnippet/CSharp/SP_BDC/bdcmodel1/salesorderservice.cs#11)]
6767
[!code-vb[SP_BDC#11](../sharepoint/codesnippet/VisualBasic/sp_bdc/bdcmodel1/salesorderservice.vb#11)]
6868

69-
## See Also
69+
## See also
7070
[How to: Add a Finder Method](../sharepoint/how-to-add-a-finder-method.md)
7171
[How to: Add a Specific Finder Method](../sharepoint/how-to-add-a-specific-finder-method.md)
7272
[How to: Add a Parameter to a Method](../sharepoint/how-to-add-a-parameter-to-a-method.md)

docs/sharepoint/how-to-add-a-finder-method.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ manager: douge
2323
ms.workload:
2424
- "office"
2525
---
26-
# How to: Add a Finder Method
27-
To enable the Business Data Connectivity service to display a list of entities in a web part or list, you must create a *Finder* method. A Finder method is a special method that returns a collection of entity instances. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
26+
# How to: Add a Finder method
27+
To enable the Business Data Connectivity (BDC) service to display a list of entities in a web part or list, you must create a *Finder* method. A Finder method is a special method that returns a collection of entity instances. For more information, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
2828

2929
### To create a Finder method
3030

31-
1. On the BDC designer, choose an entity.
31+
1. On the **BDC Designer**, choose an entity.
3232

3333
For more information, see [How to: Add an Entity to a Model](../sharepoint/how-to-add-an-entity-to-a-model.md).
3434

35-
2. On the menu bar, choose **View**, **Other Windows**, **BDC Method Details**.
35+
2. On the menu bar, choose **View** > **Other Windows** > **BDC Method Details**.
3636

3737
The **BDC Method Details** window opens. For more information about the **BDC Method Details** window, see [BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md).
3838

@@ -61,7 +61,7 @@ ms.workload:
6161
[!code-csharp[SP_BDC#2](../sharepoint/codesnippet/CSharp/SP_BDC/bdcmodel1/contactservice.cs#2)]
6262
[!code-vb[SP_BDC#2](../sharepoint/codesnippet/VisualBasic/sp_bdc/bdcmodel1/contactservice.vb#2)]
6363

64-
## See Also
64+
## See also
6565
[BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md)
6666
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
6767
[How to: Add a Specific Finder Method](../sharepoint/how-to-add-a-specific-finder-method.md)

docs/sharepoint/how-to-add-a-parameter-to-a-method.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ manager: douge
2323
ms.workload:
2424
- "office"
2525
---
26-
# How to: Add a Parameter to a Method
26+
# How to: Add a parameter to a method
2727
Use a parameter to pass information into the method or to return information from a method. All methods must have at least one parameter. For more information about how to design a parameter to support the type of method that you want to create, see [Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md).
2828

29-
When you add a parameter to a method, Visual Studio adds the `<Parameter>` element to the XML of the model file in your project. For more information about the attributes of a `<Parameter>` element, see [Parameter](http://go.microsoft.com/fwlink/?LinkId=169284).
29+
When you add a parameter to a method, Visual Studio adds the Parameter element to the XML of the model file in your project. For more information about the attributes of a Parameter element, see [Parameter](http://go.microsoft.com/fwlink/?LinkId=169284).
3030

3131
### To add a parameter to a method
3232

3333
1. Add a method to an entity.
3434

35-
2. On the menu bar, choose **View**, **Other Windows**, **BDC Method Details**.
35+
2. On the menu bar, choose **View** > **Other Windows** > **BDC Method Details**.
3636

3737
The **BDC Method Details** window opens. For more information, see [BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md).
3838

@@ -42,7 +42,7 @@ ms.workload:
4242

4343
A new parameter appears beneath the **Parameters** node.
4444

45-
5. On the menu bar, choose **View**, **Properties Window**.
45+
5. On the menu bar, choose **View** > **Properties Window**.
4646

4747
6. In the **Properties** window, set the **Name** property to any name that makes sense. For example, if the method will return customers, you might name the method **GetCustomers**.
4848

@@ -52,11 +52,10 @@ ms.workload:
5252

5353
8. Modify the type descriptor of the parameter. For more information, see [How to: Define the Type Descriptor of a Parameter](../sharepoint/how-to-define-the-type-descriptor-of-a-parameter.md).
5454

55-
## See Also
55+
## See also
5656
[BDC Model Design Tools Overview](../sharepoint/bdc-model-design-tools-overview.md)
5757
[How to: Add an Entity to a Model](../sharepoint/how-to-add-an-entity-to-a-model.md)
5858
[How to: Define the Type Descriptor of a Parameter](../sharepoint/how-to-define-the-type-descriptor-of-a-parameter.md)
5959
[How to: Define a Method Instance](../sharepoint/how-to-define-a-method-instance.md)
6060
[Designing a Business Data Connectivity Model](../sharepoint/designing-a-business-data-connectivity-model.md)
6161

62-

docs/sharepoint/how-to-add-a-project-output-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ manager: douge
2020
ms.workload:
2121
- "office"
2222
---
23-
# How to: Add a Project Output Reference
23+
# How to: Add a project output reference
2424
To deploy non-SharePoint project assemblies (or .xap files in Silverlight projects) to SharePoint, add them as a project output reference.
2525

2626
This process creates a solution build dependency between the two projects. Projects associated with project output references are built before the SharePoint project is built and deployed.
2727

28-
### To add a Project Output Reference
28+
### To add a project output reference
2929

3030
1. Load a solution that contains at least one SharePoint project and one non-SharePoint project.
3131

@@ -39,7 +39,7 @@ ms.workload:
3939

4040
6. Choose the arrow next to **Project Name**, choose the name of the non-SharePoint project item, and then choose the **OK** button.
4141

42-
## See Also
42+
## See also
4343
[Providing Packaging and Deployment Information in Project Items](../sharepoint/providing-packaging-and-deployment-information-in-project-items.md)
4444
[How to: Mark Controls as Safe Controls](../sharepoint/how-to-mark-controls-as-safe-controls.md)
4545
[Packaging and Deploying SharePoint Solutions](../sharepoint/packaging-and-deploying-sharepoint-solutions.md)

0 commit comments

Comments
 (0)